diff --git a/.github/actions/spelling/allow.txt b/.github/actions/spelling/allow.txt index e613c2a565cd..bd1b444151ef 100644 --- a/.github/actions/spelling/allow.txt +++ b/.github/actions/spelling/allow.txt @@ -10,6 +10,7 @@ bcdboot checkboxes cla clonemedium +Cloudflight codeowner codeowners Contoso @@ -17,6 +18,7 @@ diffs DISM dism distro +dsc Entra Esco ESRP @@ -27,6 +29,7 @@ fnt ftp github GPT +HKLM Homeserver homeservers https @@ -68,6 +71,8 @@ ranhpa ranpha redirector Redistributables +restsource +rewinged Runtimes russellbanks screenshots @@ -81,6 +86,7 @@ Testplan toolset Trenly ttc +UAC ubuntu UEFI unassign diff --git a/.github/policies/labelAdded.validationCompleted.yml b/.github/policies/labelAdded.validationCompleted.yml index cec8d711b9a2..26691c9eb323 100644 --- a/.github/policies/labelAdded.validationCompleted.yml +++ b/.github/policies/labelAdded.validationCompleted.yml @@ -1,4 +1,4 @@ -id: labelAdded.validationHttpError +id: labelAdded.validationCompleted name: GitOps.PullRequestIssueManagement description: Handlers when "Validation-Completed" label is added owner: @@ -11,6 +11,7 @@ configuration: - description: >- When the label "Validation-Completed" is added to a pull request and the "Moderator-Approved" label is not present * Add a reply notifying the issue author + * Remove the Validation-Guide label if: - payloadType: Pull_Request - labelAdded: @@ -26,6 +27,8 @@ configuration: label: Publisher-Verified - isOpen then: + - removeLabel: + label: Validation-Guide - addReply: reply: >- The check-in policies require a moderator to approve PRs from the community. diff --git a/.github/policies/labelManagement.assignIcmUsersAndModerators.yml b/.github/policies/labelManagement.assignIcmUsersAndModerators.yml index cc1039f7dd05..4533fd3c48e1 100644 --- a/.github/policies/labelManagement.assignIcmUsersAndModerators.yml +++ b/.github/policies/labelManagement.assignIcmUsersAndModerators.yml @@ -1,4 +1,4 @@ -id: labelAdded.assignIcmUsersAndModerators +id: labelManagement.assignIcmUsersAndModerators name: GitOps.PullRequestIssueManagement description: When these labels are added, the ICM Primary and secondary user should be assigned owner: diff --git a/Tools/ManualValidation/ManualValidationPipeline.cs b/Tools/ManualValidation/ManualValidationPipeline.cs index de8b8b6d66a8..b4bd5234607e 100644 --- a/Tools/ManualValidation/ManualValidationPipeline.cs +++ b/Tools/ManualValidation/ManualValidationPipeline.cs @@ -3979,24 +3979,24 @@ public void AddValidationData(string PackageIdentifier,string gitHubUserName = " //Extend/reference CredWriteW as CredWrite. [DllImport("Advapi32.dll", SetLastError = true, EntryPoint = "CredFree", CharSet = CharSet.Unicode)] - private static extern bool CredRelease([In] IntPtr credentialPtr); - //Extend/reference CredFree as CredWrite. + private static extern void CredRelease([In] IntPtr credentialPtr); + //Extend/reference CredFree as CredRelease. public static Credential GetUserCredential(string target) { CredentialMem credMem; IntPtr credPtr; if (CredRead(target, 1, 0, out credPtr)) { //If found, returns true and adds to credPtr, else false and error. - credMem = Marshal.PtrToStructure(credPtr); - //"Marshals data from an unmanaged block of memory to a newly allocated managed object of the type specified by a generic type parameter." - byte[] passwordBytes = new byte[credMem.credentialBlobSize]; //Make a new byte array passwordBytes of size credentialBlobSize. - Marshal.Copy(credMem.credentialBlob, passwordBytes, 0, credMem.credentialBlobSize); - //Copies data from an unmanaged memory pointer to a managed 8-bit unsigned integer array. - // - Credential cred = new Credential(credMem.targetName, credMem.userName, Encoding.Unicode.GetString(passwordBytes)); //Make a new Credential object cred. - //Original example doesn't include these: - CredRelease(credPtr); - CredRelease(credMem.credentialBlob); - return cred; + try { + credMem = Marshal.PtrToStructure(credPtr); + //"Marshals data from an unmanaged block of memory to a newly allocated managed object of the type specified by a generic type parameter." + byte[] passwordBytes = new byte[credMem.credentialBlobSize]; //Make a new byte array passwordBytes of size credentialBlobSize. + Marshal.Copy(credMem.credentialBlob, passwordBytes, 0, credMem.credentialBlobSize); + //Copies data from an unmanaged memory pointer to a managed 8-bit unsigned integer array. + return new Credential(credMem.targetName, credMem.userName, Encoding.Unicode.GetString(passwordBytes)); //Make a new Credential object cred. + } finally { + //credentialBlob is an interior pointer into credPtr; free the buffer once via CredFree. + if (credPtr != IntPtr.Zero) { CredRelease(credPtr); } + } } else { throw new Exception("Failed to retrieve credentials"); } @@ -4014,11 +4014,14 @@ public static void SetUserCredential(string target, string userName, string pass userCredential.credentialBlobSize = (int)bpassword.Length; userCredential.credentialBlob = Marshal.StringToCoTaskMemUni(password); //If write fails, emit last error. - if (!CredWrite(ref userCredential, 0)) { - throw new System.ComponentModel.Win32Exception(Marshal.GetLastWin32Error()); + try { + if (!CredWrite(ref userCredential, 0)) { + throw new System.ComponentModel.Win32Exception(Marshal.GetLastWin32Error()); + } + } finally { + //Match StringToCoTaskMemUni allocation with FreeCoTaskMem. + Marshal.FreeCoTaskMem(userCredential.credentialBlob); } - //Original example doesn't include this. Was going to use FreeCoTaskMem as recommended, but this gave an error. - Marshal.FreeCoTaskMem(userCredential.credentialBlob); } [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)] diff --git a/Tools/ManualValidation/ManualValidationPipeline.ps1 b/Tools/ManualValidation/ManualValidationPipeline.ps1 index b131b59b583f..b619787377c9 100644 --- a/Tools/ManualValidation/ManualValidationPipeline.ps1 +++ b/Tools/ManualValidation/ManualValidationPipeline.ps1 @@ -7431,21 +7431,25 @@ namespace CredManager { private static extern bool CredRead(string target, int type, int reservedFlag, out IntPtr credentialPtr); //Extend/reference CredReadW as CredRead. + [DllImport("Advapi32.dll", SetLastError = true, EntryPoint = "CredFree", CharSet = CharSet.Unicode)] + private static extern void CredRelease([In] IntPtr credentialPtr); + //Extend/reference CredFree as CredRelease. + public static Credential GetUserCredential(string target) { CredentialMem credMem; IntPtr credPtr; if (CredRead(target, 1, 0, out credPtr)) { //If found, returns true and adds to credPtr, else false and error. - credMem = Marshal.PtrToStructure(credPtr); - //"Marshals data from an unmanaged block of memory to a newly allocated managed object of the type specified by a generic type parameter." - byte[] passwordBytes = new byte[credMem.credentialBlobSize]; //Make a new byte array passwordBytes of size credentialBlobSize. - Marshal.Copy(credMem.credentialBlob, passwordBytes, 0, credMem.credentialBlobSize); - //Copies data from an unmanaged memory pointer to a managed 8-bit unsigned integer array. - // - Credential cred = new Credential(credMem.targetName, credMem.userName, Encoding.Unicode.GetString(passwordBytes)); //Make a new Credential object cred. - //Original example doesn't include these: - Marshal.FreeHGlobal(credPtr); - Marshal.FreeHGlobal(credMem.credentialBlob); - return cred; + try { + credMem = Marshal.PtrToStructure(credPtr); + //"Marshals data from an unmanaged block of memory to a newly allocated managed object of the type specified by a generic type parameter." + byte[] passwordBytes = new byte[credMem.credentialBlobSize]; //Make a new byte array passwordBytes of size credentialBlobSize. + Marshal.Copy(credMem.credentialBlob, passwordBytes, 0, credMem.credentialBlobSize); + //Copies data from an unmanaged memory pointer to a managed 8-bit unsigned integer array. + return new Credential(credMem.targetName, credMem.userName, Encoding.Unicode.GetString(passwordBytes)); //Make a new Credential object cred. + } finally { + //credentialBlob is an interior pointer into credPtr; free the buffer once via CredFree. + if (credPtr != IntPtr.Zero) { CredRelease(credPtr); } + } } else { throw new Exception("Failed to retrieve credentials"); } @@ -7467,11 +7471,14 @@ namespace CredManager { userCredential.credentialBlobSize = (int)bpassword.Length; userCredential.credentialBlob = Marshal.StringToCoTaskMemUni(password); //If write fails, emit last error. - if (!CredWrite(ref userCredential, 0)) { - throw new System.ComponentModel.Win32Exception(Marshal.GetLastWin32Error()); + try { + if (!CredWrite(ref userCredential, 0)) { + throw new System.ComponentModel.Win32Exception(Marshal.GetLastWin32Error()); + } + } finally { + //Match StringToCoTaskMemUni allocation with FreeCoTaskMem. + Marshal.FreeCoTaskMem(userCredential.credentialBlob); } - //Original example doesn't include this. Was going to use FreeCoTaskMem as recommended, but this gave an error. - Marshal.FreeHGlobal(userCredential.credentialBlob); } } } diff --git a/Tools/Modules/FileOperations/FileOperations.Tests.ps1 b/Tools/Modules/FileOperations/FileOperations.Tests.ps1 new file mode 100644 index 000000000000..0d6fd3e8c1e7 --- /dev/null +++ b/Tools/Modules/FileOperations/FileOperations.Tests.ps1 @@ -0,0 +1,107 @@ +Describe 'FileOperations Module' { + BeforeAll { + $ModulePath = Split-Path -Parent $PSCommandPath + Import-Module (Join-Path $ModulePath 'FileOperations.psd1') -Force + } + + Context 'Module Import' { + It 'Should import the module successfully' { + Get-Module 'FileOperations' | Should -Not -BeNullOrEmpty + } + + It 'Should export all expected functions' { + $ExportedFunctions = (Get-Module 'FileOperations').ExportedFunctions.Keys + 'Initialize-Folder' -in $ExportedFunctions | Should -Be $true + 'Invoke-FileCleanup' -in $ExportedFunctions | Should -Be $true + 'Request-RemoveItem' -in $ExportedFunctions | Should -Be $true + } + } +} + +Describe 'Initialize-Folder' { + It 'Should create a folder and return true when it does not exist' { + $tempRoot = Join-Path -Path ([System.IO.Path]::GetTempPath()) -ChildPath ([System.Guid]::NewGuid().ToString()) + $targetFolder = Join-Path -Path $tempRoot -ChildPath 'created' + + try { + $result = Initialize-Folder -FolderPath $targetFolder + $result | Should -Be $true + (Test-Path -Path $targetFolder -PathType Container) | Should -Be $true + } finally { + if (Test-Path -Path $tempRoot) { Remove-Item -Path $tempRoot -Recurse -Force -ErrorAction SilentlyContinue } + } + } + + It 'Should return true for an existing folder' { + $tempRoot = Join-Path -Path ([System.IO.Path]::GetTempPath()) -ChildPath ([System.Guid]::NewGuid().ToString()) + New-Item -Path $tempRoot -ItemType Directory -Force | Out-Null + + try { + $result = Initialize-Folder -FolderPath $tempRoot + $result | Should -Be $true + } finally { + if (Test-Path -Path $tempRoot) { Remove-Item -Path $tempRoot -Recurse -Force -ErrorAction SilentlyContinue } + } + } + + It 'Should return false when a file exists at the folder path' { + $tempFile = New-TemporaryFile + + try { + $result = Initialize-Folder -FolderPath $tempFile.FullName + $result | Should -Be $false + } finally { + if (Test-Path -Path $tempFile.FullName) { Remove-Item -Path $tempFile.FullName -Force -ErrorAction SilentlyContinue } + } + } +} + +Describe 'Request-RemoveItem' { + It 'Should remove a file path' { + $tempFile = New-TemporaryFile + Request-RemoveItem -Path $tempFile.FullName + (Test-Path -Path $tempFile.FullName) | Should -Be $false + } + + It 'Should remove a directory path recursively' { + $tempRoot = Join-Path -Path ([System.IO.Path]::GetTempPath()) -ChildPath ([System.Guid]::NewGuid().ToString()) + $nestedFolder = Join-Path -Path $tempRoot -ChildPath 'nested' + $nestedFile = Join-Path -Path $nestedFolder -ChildPath 'payload.txt' + New-Item -Path $nestedFolder -ItemType Directory -Force | Out-Null + Set-Content -Path $nestedFile -Value 'payload' + + Request-RemoveItem -Path $tempRoot + (Test-Path -Path $tempRoot) | Should -Be $false + } + + It 'Should be a no-op when path does not exist' { + $missingPath = Join-Path -Path ([System.IO.Path]::GetTempPath()) -ChildPath ([System.Guid]::NewGuid().ToString()) + { Request-RemoveItem -Path $missingPath } | Should -Not -Throw + } +} + +Describe 'Invoke-FileCleanup' { + It 'Should remove files and folders in the provided list' { + $tempRoot = Join-Path -Path ([System.IO.Path]::GetTempPath()) -ChildPath ([System.Guid]::NewGuid().ToString()) + $tempFolder = Join-Path -Path $tempRoot -ChildPath 'cleanup' + $tempFile = Join-Path -Path $tempRoot -ChildPath 'file.txt' + New-Item -Path $tempFolder -ItemType Directory -Force | Out-Null + New-Item -Path $tempFile -ItemType File -Force | Out-Null + + Invoke-FileCleanup -FilePaths @($tempFolder, $tempFile) + + (Test-Path -Path $tempFolder) | Should -Be $false + (Test-Path -Path $tempFile) | Should -Be $false + + if (Test-Path -Path $tempRoot) { Remove-Item -Path $tempRoot -Recurse -Force -ErrorAction SilentlyContinue } + } + + It 'Should not throw when file list is empty' { + { Invoke-FileCleanup -FilePaths @() } | Should -Not -Throw + } + + It 'Should not throw when file list contains missing paths' { + $missingPath = Join-Path -Path ([System.IO.Path]::GetTempPath()) -ChildPath ([System.Guid]::NewGuid().ToString()) + { Invoke-FileCleanup -FilePaths @($missingPath) } | Should -Not -Throw + } +} diff --git a/Tools/Modules/FileOperations/FileOperations.psd1 b/Tools/Modules/FileOperations/FileOperations.psd1 new file mode 100644 index 000000000000..03a96c5b1adc --- /dev/null +++ b/Tools/Modules/FileOperations/FileOperations.psd1 @@ -0,0 +1,54 @@ +# +# Module manifest for module 'FileOperations' +# +# Generated by: Trenly +# +# Generated on: 5/27/2026 +# + +@{ + + # Script module or binary module file associated with this manifest. + RootModule = 'FileOperations.psm1' + + # Version number of this module. + ModuleVersion = '0.0.1' + + # ID used to uniquely identify this module + GUID = '37c15420-b760-4f80-8c52-a154225b867c' + + # Author of this module + Author = 'Microsoft Open Source Community' + + # Company or vendor of this module + CompanyName = 'Microsoft Corporation' + + # Copyright statement for this module + Copyright = 'Copyright (c) Microsoft Corporation. All rights reserved.' + + # Description of the functionality provided by this module + Description = 'Shared folder and file operations for winget-pkgs tooling scripts and modules.' + + # Functions to export from this module + FunctionsToExport = @( + 'Initialize-Folder' + 'Request-RemoveItem' + 'Invoke-FileCleanup' + ) + + # Cmdlets to export from this module + CmdletsToExport = @() + + # Variables to export from this module + VariablesToExport = '*' + + # Aliases to export from this module + AliasesToExport = @() + + PrivateData = @{ + PSData = @{ + LicenseUri = 'https://github.com/microsoft/winget-pkgs/blob/master/LICENSE' + ProjectUri = 'https://github.com/microsoft/winget-pkgs' + } + } +} diff --git a/Tools/Modules/FileOperations/FileOperations.psm1 b/Tools/Modules/FileOperations/FileOperations.psm1 new file mode 100644 index 000000000000..691d765d33f8 --- /dev/null +++ b/Tools/Modules/FileOperations/FileOperations.psm1 @@ -0,0 +1,73 @@ +function Initialize-Folder { + param ( + [Parameter(Mandatory = $true)] + [String] $FolderPath + ) + + $FolderPath = [System.IO.Path]::GetFullPath($FolderPath) + if (Test-Path -Path $FolderPath -PathType Container) { return $true } + if (Test-Path -Path $FolderPath) { return $false } + + try { + New-Item -Path $FolderPath -ItemType Directory -Force -ErrorAction Stop | Out-Null + return $true + } catch { + return $false + } +} + +function Request-RemoveItem { + Param( + [Parameter(Mandatory = $true, Position = 0)] + [string] $Path, + [int] $Retries = 6, + [int] $DelayMs = 250 + ) + + # Check if path exists using .NET + $fileInfo = [System.IO.FileInfo]$Path + $dirInfo = [System.IO.DirectoryInfo]$Path + + if (-not ($fileInfo.Exists -or $dirInfo.Exists)) { return } + + for ($i = 0; $i -lt $Retries; $i++) { + try { + if ($dirInfo.Exists) { + $dirInfo.Delete($true) + } elseif ($fileInfo.Exists) { + $fileInfo.Delete() + } + return + } catch [System.IO.IOException] { + [GC]::Collect() + [GC]::WaitForPendingFinalizers() + Start-Sleep -Milliseconds $DelayMs + $DelayMs = [Math]::Min(5000, $DelayMs * 2) + } catch { + throw + } + } + + Write-Warning "Could not remove file '$Path' after $Retries attempts; it may be in use by another process." +} + +function Invoke-FileCleanup { + param ( + [Parameter(Mandatory = $true)] + [AllowEmptyString()] + [AllowEmptyCollection()] + [String[]] $FilePaths + ) + + if (!$FilePaths) { return } + foreach ($path in $FilePaths) { + Write-Debug "Removing $path" + if (Test-Path -Path $path) { + Request-RemoveItem -Path $path + } else { + Write-Warning "Could not remove $path as it does not exist" + } + } +} + +Export-ModuleMember -Function @('Initialize-Folder', 'Request-RemoveItem', 'Invoke-FileCleanup') diff --git a/Tools/Modules/YamlCreate/YamlCreate.GitHub/YamlCreate.GitHub.Tests.ps1 b/Tools/Modules/YamlCreate/YamlCreate.GitHub/YamlCreate.GitHub.Tests.ps1 new file mode 100644 index 000000000000..73a83f762c3a --- /dev/null +++ b/Tools/Modules/YamlCreate/YamlCreate.GitHub/YamlCreate.GitHub.Tests.ps1 @@ -0,0 +1,80 @@ +Describe 'YamlCreate.GitHub Module' { + BeforeAll { + # Import the module to test + $ModulePath = Split-Path -Parent $PSCommandPath + Import-Module (Join-Path $ModulePath 'YamlCreate.GitHub.psd1') -Force + } + + Context 'Module Import' { + It 'Should import the module successfully' { + Get-Module 'YamlCreate.GitHub' | Should -Not -BeNullOrEmpty + } + + It 'Should declare FileOperations as a required module dependency' { + $ModulePath = Split-Path -Parent $PSCommandPath + $manifest = Import-PowerShellDataFile -Path (Join-Path $ModulePath 'YamlCreate.GitHub.psd1') + (@($manifest.RequiredModules) -contains 'FileOperations') | Should -Be $true + } + + It 'Should export all expected functions' { + $ExportedFunctions = (Get-Module 'YamlCreate.GitHub').ExportedFunctions.Keys + 'Get-Remote' -in $ExportedFunctions | Should -Be $true + 'Set-Remote' -in $ExportedFunctions | Should -Be $true + 'Find-PullRequest' -in $ExportedFunctions | Should -Be $true + 'Get-PrTemplate' -in $ExportedFunctions | Should -Be $true + } + } + + Context 'wingetUpstream Variable' { + It 'Should have correct value for wingetUpstream' { + $wingetUpstream | Should -Be 'https://github.com/microsoft/winget-pkgs.git' + } + } + + Context 'Get-Remote Function' { + It 'Should return $null for non-existent remote' { + $result = Get-Remote -RemoteName 'nonexistent-remote-xyz' + $result | Should -BeNullOrEmpty + } + + It 'Should accept RemoteName parameter' { + { Get-Remote -RemoteName 'origin' } | Should -Not -Throw + } + } + + Context 'Set-Remote Function' { + It 'Should accept RemoteName and Url parameters' { + { Set-Remote -RemoteName 'test' -Url 'https://example.com/test.git' } | Should -Not -Throw + } + + It 'Should return boolean result' { + $result = Set-Remote -RemoteName 'test' -Url 'https://example.com/test.git' + ($result -is [System.Boolean]) | Should -Be $true + } + } + + Context 'Find-PullRequest Function' { + It 'Should accept PackageIdentifier and PackageVersion parameters' { + { Find-PullRequest -PackageIdentifier 'Test.Package' -PackageVersion '1.0.0' } | Should -Not -Throw + } + + It 'Should handle web request errors gracefully' { + { Find-PullRequest -PackageIdentifier 'Invalid...Package' -PackageVersion '1.0.0' } | Should -Not -Throw + } + } + + Context 'Get-PrTemplate Function' { + It 'Should not throw when called' { + { Get-PrTemplate } | Should -Not -Throw + } + + It 'Should return string or null' { + $result = Get-PrTemplate + (($result -is [string]) -or ($result -eq $null)) | Should -Be $true + } + + It 'Should handle web request failures gracefully' { + { $result = Get-PrTemplate; $result } | Should -Not -Throw + } + } +} diff --git a/Tools/Modules/YamlCreate/YamlCreate.GitHub/YamlCreate.GitHub.psd1 b/Tools/Modules/YamlCreate/YamlCreate.GitHub/YamlCreate.GitHub.psd1 new file mode 100644 index 000000000000..299846979715 --- /dev/null +++ b/Tools/Modules/YamlCreate/YamlCreate.GitHub/YamlCreate.GitHub.psd1 @@ -0,0 +1,133 @@ +# +# Module manifest for module 'YamlCreate.GitHub' +# +# Generated by: Trenly +# +# Generated on: 5/27/2026 +# + +@{ + + # Script module or binary module file associated with this manifest. + RootModule = 'YamlCreate.GitHub.psm1' + + # Version number of this module. + ModuleVersion = '0.0.1' + + # Supported PSEditions + # CompatiblePSEditions = @() + + # ID used to uniquely identify this module + GUID = 'e5c8f1a2-7b3d-4c2e-9a1f-6b5d8c3a2e1f' + + # Author of this module + Author = 'Microsoft Open Source Community' + + # Company or vendor of this module + CompanyName = 'Microsoft Corporation' + + # Copyright statement for this module + Copyright = 'Copyright (c) Microsoft Corporation. All rights reserved.' + + # Description of the functionality provided by this module + Description = 'GitHub-related functionality for YamlCreate, including PR checking and template retrieval.' + + # Minimum version of the PowerShell engine required by this module + # PowerShellVersion = '' + + # Name of the PowerShell host required by this module + # PowerShellHostName = '' + + # Minimum version of the PowerShell host required by this module + # PowerShellHostVersion = '' + + # Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. + # DotNetFrameworkVersion = '' + + # Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. + # ClrVersion = '' + + # Processor architecture (None, X86, Amd64) required by this module + # ProcessorArchitecture = '' + + # Modules that must be imported into the global environment prior to importing this module + RequiredModules = @( + 'FileOperations' + ) + + # Assemblies that must be loaded prior to importing this module + # RequiredAssemblies = @() + + # Script files (.ps1) that are run in the caller's environment prior to importing this module. + # ScriptsToProcess = @() + + # Type files (.ps1xml) to be loaded when importing this module + # TypesToProcess = @() + + # Format files (.ps1xml) to be loaded when importing this module + # FormatsToProcess = @() + + # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess + # NestedModules = @() + + # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. + FunctionsToExport = @('Get-Remote', 'Set-Remote', 'Find-PullRequest', 'Get-PrTemplate') + + # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. + CmdletsToExport = @() + + # Variables to export from this module + VariablesToExport = '*' + + # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. + AliasesToExport = @() + + # DSC resources to export from this module + # DscResourcesToExport = @() + + # List of all modules packaged with this module + ModuleList = @() + + # List of all files packaged with this module + # FileList = @() + + # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. + PrivateData = @{ + + PSData = @{ + + # Tags applied to this module. These help with module discovery in online galleries. + # Tags = @() + + # A URL to the license for this module. + LicenseUri = 'https://github.com/microsoft/winget-pkgs/blob/master/LICENSE' + + # A URL to the main website for this project. + ProjectUri = 'https://github.com/microsoft/winget-pkgs' + + # A URL to an icon representing this module. + # IconUri = '' + + # ReleaseNotes of this module + # ReleaseNotes = '' + + # Prerelease string of this module + # Prerelease = '' + + # Flag to indicate whether the module requires explicit user acceptance for install/update/save + # RequireLicenseAcceptance = $false + + # External dependent modules of this module + # ExternalModuleDependencies = @() + + } # End of PSData hashtable + + } # End of PrivateData hashtable + + # HelpInfo URI of this module + # HelpInfoURI = '' + + # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. + # DefaultCommandPrefix = '' + +} diff --git a/Tools/Modules/YamlCreate/YamlCreate.GitHub/YamlCreate.GitHub.psm1 b/Tools/Modules/YamlCreate/YamlCreate.GitHub/YamlCreate.GitHub.psm1 new file mode 100644 index 000000000000..931dbf7f027b --- /dev/null +++ b/Tools/Modules/YamlCreate/YamlCreate.GitHub/YamlCreate.GitHub.psm1 @@ -0,0 +1,234 @@ +# Module variable for upstream remote URL +$script:wingetUpstream = 'https://github.com/microsoft/winget-pkgs.git' +$script:AppInstallerPFN = 'Microsoft.DesktopAppInstaller_8wekyb3d8bbwe' +$script:AppInstallerDataFolder = Join-Path -Path (Join-Path -Path $env:LOCALAPPDATA -ChildPath 'Packages') -ChildPath $script:AppInstallerPFN +$script:TokenValidationCache = Join-Path -Path $script:AppInstallerDataFolder -ChildPath 'TokenValidationCache' +$script:CachedTokenExpiration = 30 # Days +$script:GitHubToken = $env:WINGET_PKGS_GITHUB_TOKEN +$script:GitHubApiBaseUri = 'https://api.github.com' + +function Test-GithubToken { + [Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSAvoidUsingConvertToSecureStringWithPlainText', '', + Justification = 'The standard workflow that users use with other applications requires the use of plaintext GitHub Access Tokens')] + + param ( + [Parameter(Mandatory = $true)] + [AllowEmptyString()] + [String] $Token + ) + + if ([string]::IsNullOrWhiteSpace($Token)) { return $false } + + $_memoryStream = [System.IO.MemoryStream]::new() + $_streamWriter = [System.IO.StreamWriter]::new($_memoryStream) + $_streamWriter.Write($Token) + $_streamWriter.Flush() + $_memoryStream.Position = 0 + + $tokenHash = Get-FileHash -InputStream $_memoryStream | Select-Object -ExpandProperty Hash + + $_streamWriter.DisposeAsync() 1> $null + $_memoryStream.DisposeAsync() 1> $null + + if (-not (Initialize-Folder -FolderPath $script:TokenValidationCache)) { return $false } + $cachedToken = Get-ChildItem -Path $script:TokenValidationCache -Filter $tokenHash -ErrorAction SilentlyContinue + + if ($cachedToken) { + $cachedTokenAge = (Get-Date) - $cachedToken.LastWriteTime | Select-Object -ExpandProperty TotalDays + $cachedTokenAge = [Math]::Round($cachedTokenAge, 2) + $cacheIsExpired = $cachedTokenAge -ge $script:CachedTokenExpiration + $cachedTokenContent = (Get-Content $cachedToken -Raw).Trim() + $cachedTokenIsEmpty = [string]::IsNullOrWhiteSpace($cachedTokenContent) + + if (!$cacheIsExpired -and !$cachedTokenIsEmpty) { + $cachedExpirationForParsing = $cachedTokenContent.TrimEnd(' UTC') + $cachedExpirationDate = [System.DateTime]::MinValue + [System.DateTime]::TryParse($cachedExpirationForParsing, [ref]$cachedExpirationDate) | Out-Null + + $tokenExpirationDays = $cachedExpirationDate - (Get-Date) | Select-Object -ExpandProperty TotalDays + $tokenExpirationDays = [Math]::Round($tokenExpirationDays, 2) + + if ($cachedExpirationForParsing -eq [System.DateTime]::MaxValue.ToLongDateString().Trim()) { + return $true + } + + if ($tokenExpirationDays -gt 0) { + return $true + } elseif ($cachedExpirationDate -eq [System.DateTime]::MinValue) { + Invoke-FileCleanup -FilePaths $cachedToken.FullName + } else { + return $false + } + } else { + Invoke-FileCleanup -FilePaths $cachedToken.FullName + } + } + + $requestParameters = @{ + Uri = 'https://api.github.com/rate_limit' + Authentication = 'Bearer' + Token = $(ConvertTo-SecureString "$Token" -AsPlainText) + ErrorAction = 'Stop' + } + + $apiResponse = Invoke-WebRequest @requestParameters + $rateLimit = @($apiResponse.Headers['X-RateLimit-Limit']) + $tokenExpiration = @($apiResponse.Headers['github-authentication-token-expiration']) + + if (!$rateLimit) { return $false } + if ([int]$rateLimit[0] -le 60) { + return $false + } + + $tokenExpiration = $tokenExpiration[0] -replace '[^0-9]+$', '' + if (!$tokenExpiration -or [string]::IsNullOrWhiteSpace($tokenExpiration)) { + $tokenExpiration = [System.DateTime]::MaxValue + } + if ([DateTime]::TryParse($tokenExpiration, [ref]$tokenExpiration)) { + $null = $tokenExpiration + } else { + $tokenExpiration = [System.DateTime]::MinValue + } + + $tokenExpiration = $tokenExpiration.ToString() + New-Item -ItemType File -Path $script:TokenValidationCache -Name $tokenHash -Value $tokenExpiration -Force | Out-Null + return $true +} + +function Invoke-GitHubRequest { + param ( + [Parameter(Mandatory = $true)] + [string] $Uri + ) + + $requestUri = $Uri + if ($requestUri -notmatch '^https?://') { + if (-not $requestUri.StartsWith('/')) { + $requestUri = "/$requestUri" + } + $requestUri = "$script:GitHubApiBaseUri$requestUri" + } + + $requestParameters = @{ + Uri = $requestUri + UseBasicParsing = $true + ErrorAction = 'Stop' + } + + $hasValidToken = $false + if (-not [string]::IsNullOrWhiteSpace($script:GitHubToken)) { + try { + $hasValidToken = Test-GithubToken -Token $script:GitHubToken + } catch { + $hasValidToken = $false + } + } + + if ($hasValidToken) { + $requestParameters.Headers = @{ + Authorization = "Bearer $($script:GitHubToken)" + } + } + + try { + return Invoke-WebRequest @requestParameters + } catch { + if ($hasValidToken) { + $requestParameters.Remove('Headers') + return Invoke-WebRequest @requestParameters + } + throw + } +} + +function Get-Remote { + param( + [Parameter(Mandatory = $true)] + [string] $RemoteName + ) + + try { + $remoteUrl = git remote get-url $RemoteName 2>$null + if ($remoteUrl) { + return $remoteUrl + } + return $null + } catch { + return $null + } +} + +function Set-Remote { + param( + [Parameter(Mandatory = $true)] + [string] $RemoteName, + + [Parameter(Mandatory = $true)] + [string] $Url + ) + + try { + $existingUrl = Get-Remote -RemoteName $RemoteName + if ($existingUrl) { + git remote set-url $RemoteName $Url 2>$null + } else { + git remote add $RemoteName $Url 2>$null + } + return $? + } catch { + return $false + } +} + +function Find-PullRequest { + param( + [Parameter(Mandatory = $true)] + [string] $PackageIdentifier, + + [Parameter(Mandatory = $true)] + [string] $PackageVersion + ) + + try { + $manifestPath = '{0}/{1}' -f ($PackageIdentifier -replace '\.', '/'), $PackageVersion + $searchTerms = @( + 'repo:microsoft/winget-pkgs' + 'is:pr' + $manifestPath + 'in:path' + ) + $query = [System.Uri]::EscapeDataString(($searchTerms -join ' ')) + $uri = "/search/issues?q=$query&per_page=1" + + $webResponse = Invoke-GitHubRequest -Uri $uri + $response = @($webResponse.Content | ConvertFrom-Json)[0] + return $response + } catch { + return $null + } +} + +function Get-PrTemplate { + try { + $contentsApiUrl = '/repos/microsoft/winget-pkgs/contents/.github/PULL_REQUEST_TEMPLATE.md?ref=master' + $templateResponse = Invoke-GitHubRequest -Uri $contentsApiUrl + if ($templateResponse) { + $templateFile = $templateResponse.Content | ConvertFrom-Json + if ($templateFile.content) { + $encodedContent = ($templateFile.content -replace '\s', '') + return [System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String($encodedContent)) + } + Write-Warning 'PR template response did not include file content' + return $null + } else { + Write-Warning 'Could not fetch PR template from upstream remote' + return $null + } + } catch { + Write-Warning "Could not fetch PR template from upstream remote: $_" + return $null + } +} + +# Export module variables and functions +Export-ModuleMember -Variable 'wingetUpstream' -Function @('Get-Remote', 'Set-Remote', 'Find-PullRequest', 'Get-PrTemplate') diff --git a/Tools/Modules/YamlCreate/YamlCreate.psd1 b/Tools/Modules/YamlCreate/YamlCreate.psd1 index 2db8ff8c50d8..e06c1191eadc 100644 --- a/Tools/Modules/YamlCreate/YamlCreate.psd1 +++ b/Tools/Modules/YamlCreate/YamlCreate.psd1 @@ -53,6 +53,7 @@ # Modules that must be imported into the global environment prior to importing this module RequiredModules = @( 'VirtualTerminal' # Required for virtual terminal support + 'FileOperations' ) # Assemblies that must be loaded prior to importing this module @@ -71,6 +72,7 @@ NestedModules = @( 'YamlCreate.InstallerDetection' 'YamlCreate.Menuing' + 'YamlCreate.GitHub' ) # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. @@ -90,8 +92,10 @@ # List of all modules packaged with this module ModuleList = @( + 'FileOperations' 'YamlCreate.InstallerDetection' 'YamlCreate.Menuing' + 'YamlCreate.GitHub' ) # List of all files packaged with this module @@ -137,4 +141,3 @@ # DefaultCommandPrefix = '' } - diff --git a/Tools/YamlCreate.ps1 b/Tools/YamlCreate.ps1 index bbdf04d826f0..38d9bb20bcbc 100644 --- a/Tools/YamlCreate.ps1 +++ b/Tools/YamlCreate.ps1 @@ -236,7 +236,7 @@ if ($Settings) { exit } -$ScriptHeader = '# Created with YamlCreate.ps1 v2.7.2' +$ScriptHeader = '# Created with YamlCreate.ps1 v2.8.0' $ManifestVersion = '1.12.0' $PSDefaultParameterValues = @{ '*:Encoding' = 'UTF8' } $Utf8NoBomEncoding = New-Object System.Text.UTF8Encoding $False @@ -246,7 +246,6 @@ $callingCulture = [Threading.Thread]::CurrentThread.CurrentCulture [Threading.Thread]::CurrentThread.CurrentUICulture = 'en-US' [Threading.Thread]::CurrentThread.CurrentCulture = 'en-US' if (-not ([System.Environment]::OSVersion.Platform -match 'Win')) { $env:TEMP = '/tmp/' } -$wingetUpstream = 'https://github.com/microsoft/winget-pkgs.git' $RunHash = $(Get-FileHash -InputStream $([IO.MemoryStream]::new([byte[]][char[]]$(Get-Date).Ticks.ToString()))).Hash.Substring(0, 8) $script:UserAgent = 'Microsoft-Delivery-Optimization/10.1' $script:CleanupPaths = @() @@ -394,31 +393,15 @@ $Patterns = @{ } # check if upstream exists -($remoteUpstreamUrl = $(git remote get-url upstream)) *> $null +$remoteUpstreamUrl = Get-Remote -RemoteName upstream if ($remoteUpstreamUrl -and $remoteUpstreamUrl -ne $wingetUpstream) { - git remote set-url upstream $wingetUpstream + if (-not (Set-Remote -RemoteName upstream -Url $wingetUpstream)) { + Write-Warning "Failed to update upstream remote URL. You may need to manually run: git remote set-url upstream $wingetUpstream" + } } elseif (!$remoteUpstreamUrl) { Write-Host -ForegroundColor 'Yellow' 'Upstream does not exist. Permanently adding https://github.com/microsoft/winget-pkgs as remote upstream' - git remote add upstream $wingetUpstream -} - -#### -# Description: Removes files and folders from the file system -# Inputs: List of paths to remove -# Outputs: None -#### -function Invoke-FileCleanup { - param ( - [Parameter(Mandatory = $true)] - [AllowEmptyString()] - [AllowEmptyCollection()] - [String[]] $FilePaths - ) - if (!$FilePaths) { return } - foreach ($path in $FilePaths) { - Write-Debug "Removing $path" - if (Test-Path $path) { Remove-Item -Path $path -Recurse } - else { Write-Warning "Could not remove $path as it does not exist" } + if (-not (Set-Remote -RemoteName upstream -Url $wingetUpstream)) { + Write-Warning "Failed to add upstream remote. You may need to manually run: git remote add upstream $wingetUpstream" } } @@ -634,33 +617,6 @@ Function Get-InstallerFile { return $_OutFile } -Function SafeRemovePath { - Param( - [Parameter(Mandatory=$true, Position=0)] - [string] $Path, - [int] $Retries = 6, - [int] $DelayMs = 250 - ) - - if (-not (Test-Path -LiteralPath $Path)) { return } - - for ($i = 0; $i -lt $Retries; $i++) { - try { - Remove-Item -LiteralPath $Path -Force -ErrorAction Stop - return - } catch [System.IO.IOException] { - [GC]::Collect() - [GC]::WaitForPendingFinalizers() - Start-Sleep -Milliseconds $DelayMs - $DelayMs = [Math]::Min(5000, $DelayMs * 2) - } catch { - throw - } - } - - Write-Warning "Could not remove file '$Path' after $Retries attempts; it may be in use by another process." -} - Function Get-UserSavePreference { switch ($ScriptSettings.SaveToTemporaryFolder) { 'always' { $_Preference = '0' } @@ -1466,7 +1422,7 @@ Function Read-QuickInstallerEntry { } } # Remove the downloaded files - SafeRemovePath -Path $script:dest + Request-RemoveItem -Path $script:dest Write-Host -ForegroundColor 'Green' "Installer updated!`n" } @@ -1976,7 +1932,10 @@ Function Read-LocaleMetadata { # Requests the user to answer the prompts found in the winget-pkgs pull request template # Uses this template and responses to create a PR Function Read-PRBody { - $PrBodyContent = Get-Content $args[0] + $PrBodyContent = (Get-PrTemplate) -split '\n' + if (-not $PrBodyContent) { + Write-Warning "The Pull Request Template Contained No Content!" + } ForEach ($_line in $PrBodyContent) { # | Where-Object { $_ -like '-*[ ]*' })) if ($_line -like '-*[ ]*' ) { @@ -2738,7 +2697,7 @@ do { # Check the api for open PR's # This is unauthenticated because the call-rate per minute is assumed to be low if ($ScriptSettings.ContinueWithExistingPRs -ne 'always' -and $script:Option -ne 'RemoveManifest' -and !$SkipPRCheck) { - $PRApiResponse = @(Invoke-WebRequest "https://api.github.com/search/issues?q=repo%3Amicrosoft%2Fwinget-pkgs%20is%3Apr%20$($PackageIdentifier -replace '\.', '%2F'))%2F$PackageVersion%20in%3Apath&per_page=1" -UseBasicParsing -ErrorAction SilentlyContinue | ConvertFrom-Json)[0] + $PRApiResponse = Find-PullRequest -PackageIdentifier $PackageIdentifier -PackageVersion $PackageVersion # If there was a PR found, get the URL and title if ($PRApiResponse.total_count -gt 0) { $_PRUrl = $PRApiResponse.items.html_url @@ -3111,7 +3070,7 @@ Switch ($script:Option) { } } # Remove the downloaded files - SafeRemovePath -Path $script:dest + Request-RemoveItem -Path $script:dest $_NewInstallers += Restore-YamlKeyOrder $_Installer $InstallerEntryProperties -NoComments } # Write the new manifests @@ -3226,16 +3185,7 @@ if ($PromptSubmit -eq '0') { # If the user has the cli too if (Get-Command 'gh' -ErrorAction SilentlyContinue) { # Request the user to fill out the PR template - if (Test-Path -Path "$gitTopLevel\.github\PULL_REQUEST_TEMPLATE.md") { - Read-PRBody (Resolve-Path "$gitTopLevel\.github\PULL_REQUEST_TEMPLATE.md").Path - } else { - while ([string]::IsNullOrWhiteSpace($PRTemplate)) { - Write-Host - Write-Host -ForegroundColor 'Green' -Object 'PULL_REQUEST_TEMPLATE.md not found, input path' - $PRTemplate = Read-Host -Prompt 'PR Template' | TrimString - } - Read-PRBody "$PRTemplate" - } + Read-PRBody } } diff --git a/manifests/a/AFAS/ProfitCommunicationCenter/8/2.9.1400.800/AFAS.ProfitCommunicationCenter.8.installer.yaml b/manifests/a/AFAS/ProfitCommunicationCenter/8/2.9.1400.800/AFAS.ProfitCommunicationCenter.8.installer.yaml new file mode 100644 index 000000000000..a59a27ce6608 --- /dev/null +++ b/manifests/a/AFAS/ProfitCommunicationCenter/8/2.9.1400.800/AFAS.ProfitCommunicationCenter.8.installer.yaml @@ -0,0 +1,77 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: AFAS.ProfitCommunicationCenter.8 +PackageVersion: 2.9.1400.800 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /S /V/quiet /V/norestart + SilentWithProgress: /S /V/passive /V/norestart + InstallLocation: /V"INSTALLDIR=""""" + Log: /V"/log """"" +ExpectedReturnCodes: +- InstallerReturnCode: -1 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 1 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1150 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 1201 + ReturnResponse: diskFull +- InstallerReturnCode: 1203 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1601 + ReturnResponse: contactSupport +- InstallerReturnCode: 1602 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress +- InstallerReturnCode: 1623 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 1625 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1628 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1633 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 1638 + ReturnResponse: alreadyInstalled +- InstallerReturnCode: 1639 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1640 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated +- InstallerReturnCode: 1643 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1644 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1649 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1650 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1654 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish +UpgradeBehavior: install +FileExtensions: +- cvpdf +- poci +- ptaxrep +ProductCode: '{99364302-b74f-48e3-80f4-8e40984a1f9c}' +AppsAndFeaturesEntries: +- UpgradeCode: '{8AF6210B-6233-410C-B1CA-1534B7FD0266}' + InstallerType: msi +ElevationRequirement: elevationRequired +Installers: +- Architecture: x64 + InstallerUrl: https://profitdownload.afas.nl/download/PCC/PccSetup8.00.exe + InstallerSha256: F9B9DEF508975E7776A333883466B7CDF7598DB61AF891CA881543A4A33E3281 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/AFAS/ProfitCommunicationCenter/8/2.9.1400.800/AFAS.ProfitCommunicationCenter.8.locale.en-US.yaml b/manifests/a/AFAS/ProfitCommunicationCenter/8/2.9.1400.800/AFAS.ProfitCommunicationCenter.8.locale.en-US.yaml new file mode 100644 index 000000000000..ff8de85a6199 --- /dev/null +++ b/manifests/a/AFAS/ProfitCommunicationCenter/8/2.9.1400.800/AFAS.ProfitCommunicationCenter.8.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: AFAS.ProfitCommunicationCenter.8 +PackageVersion: 2.9.1400.800 +PackageLocale: en-US +Publisher: AFAS Software +PublisherUrl: https://www.afas.nl/ +PublisherSupportUrl: https://help.afas.nl/ +PrivacyUrl: https://www.afas.nl/privacy-statement +Author: AFAS Software B.V. +PackageName: Profit Communication Center 8 +PackageUrl: https://klant.afas.nl/update-center/downloads +License: Proprietary +Copyright: Copyright (C) AFAS Software B.V. 1998-2026 +ShortDescription: | + The Profit Communication Center (PCC) is a link between Profit and your local Microsoft Office. This allows you to easily submit, open, and edit files on your local computer within Profit. +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/AFAS/ProfitCommunicationCenter/8/2.9.1400.800/AFAS.ProfitCommunicationCenter.8.locale.zh-CN.yaml b/manifests/a/AFAS/ProfitCommunicationCenter/8/2.9.1400.800/AFAS.ProfitCommunicationCenter.8.locale.zh-CN.yaml new file mode 100644 index 000000000000..8998b9974c40 --- /dev/null +++ b/manifests/a/AFAS/ProfitCommunicationCenter/8/2.9.1400.800/AFAS.ProfitCommunicationCenter.8.locale.zh-CN.yaml @@ -0,0 +1,11 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: AFAS.ProfitCommunicationCenter.8 +PackageVersion: 2.9.1400.800 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: | + Profit Communication Center(PCC)是 Profit 与本地 Microsoft Office 之间的桥梁。通过它,您可以轻松 地在本地计算机上向 Profit 提交、打开和编辑文件。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/a/AFAS/ProfitCommunicationCenter/8/2.9.1400.800/AFAS.ProfitCommunicationCenter.8.yaml b/manifests/a/AFAS/ProfitCommunicationCenter/8/2.9.1400.800/AFAS.ProfitCommunicationCenter.8.yaml new file mode 100644 index 000000000000..cc22b176e167 --- /dev/null +++ b/manifests/a/AFAS/ProfitCommunicationCenter/8/2.9.1400.800/AFAS.ProfitCommunicationCenter.8.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: AFAS.ProfitCommunicationCenter.8 +PackageVersion: 2.9.1400.800 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/a/AbdulazizJHK/ZoomToolkit/2.0.0/AbdulazizJHK.ZoomToolkit.installer.yaml b/manifests/a/AbdulazizJHK/ZoomToolkit/2.0.0/AbdulazizJHK.ZoomToolkit.installer.yaml new file mode 100644 index 000000000000..e0c91dddebd6 --- /dev/null +++ b/manifests/a/AbdulazizJHK/ZoomToolkit/2.0.0/AbdulazizJHK.ZoomToolkit.installer.yaml @@ -0,0 +1,13 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json +PackageIdentifier: AbdulazizJHK.ZoomToolkit +PackageVersion: 2.0.0 +InstallerType: portable +Commands: +- zoom-toolkit +ReleaseDate: 2026-06-24 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/AbdulazizJHK/zoom-toolkit/releases/download/v2.0.0/Zoom.Toolkit.exe + InstallerSha256: 4974917ECC2D3236C234D95384821ACB8DBA46E3150526503C78A02D5A7C260F +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/a/AbdulazizJHK/ZoomToolkit/2.0.0/AbdulazizJHK.ZoomToolkit.locale.en-US.yaml b/manifests/a/AbdulazizJHK/ZoomToolkit/2.0.0/AbdulazizJHK.ZoomToolkit.locale.en-US.yaml new file mode 100644 index 000000000000..f9fa5501fcee --- /dev/null +++ b/manifests/a/AbdulazizJHK/ZoomToolkit/2.0.0/AbdulazizJHK.ZoomToolkit.locale.en-US.yaml @@ -0,0 +1,31 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json +PackageIdentifier: AbdulazizJHK.ZoomToolkit +PackageVersion: 2.0.0 +PackageLocale: en-US +Publisher: AbdulazizJHK +PublisherUrl: https://github.com/AbdulazizJHK +PublisherSupportUrl: https://github.com/AbdulazizJHK/zoom-toolkit/issues +Author: AbdulazizJHK +PackageName: Zoom Toolkit +PackageUrl: https://github.com/AbdulazizJHK/zoom-toolkit +License: MIT +LicenseUrl: https://github.com/AbdulazizJHK/zoom-toolkit/blob/main/LICENSE +Copyright: Copyright (c) 2026 AbdulazizJHK +ShortDescription: Extract, clean, and date-sort audio from Zoom field recorders. +Description: >- + Zoom Toolkit is a bilingual (English / Arabic) desktop app for managing audio + recordings from Zoom field recorders. It extracts files from SD-card folder + structures into one directory, removes accidental short clips, and organizes + recordings into date-based folders. Features Gregorian and Hijri calendars, + drag-and-drop, dry-run previews, and a dark "Field Console" interface. +Moniker: zoom-toolkit +Tags: +- arabic +- audio +- field-recorder +- recording +- utility +- zoom +ReleaseNotesUrl: https://github.com/AbdulazizJHK/zoom-toolkit/releases/tag/v2.0.0 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/a/AbdulazizJHK/ZoomToolkit/2.0.0/AbdulazizJHK.ZoomToolkit.yaml b/manifests/a/AbdulazizJHK/ZoomToolkit/2.0.0/AbdulazizJHK.ZoomToolkit.yaml new file mode 100644 index 000000000000..1028f78845eb --- /dev/null +++ b/manifests/a/AbdulazizJHK/ZoomToolkit/2.0.0/AbdulazizJHK.ZoomToolkit.yaml @@ -0,0 +1,6 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json +PackageIdentifier: AbdulazizJHK.ZoomToolkit +PackageVersion: 2.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/a/AmanThanvi/winghostty/1.3.118/AmanThanvi.winghostty.installer.yaml b/manifests/a/AmanThanvi/winghostty/1.3.118/AmanThanvi.winghostty.installer.yaml index 16e52f3cf127..9d03b500a592 100644 --- a/manifests/a/AmanThanvi/winghostty/1.3.118/AmanThanvi.winghostty.installer.yaml +++ b/manifests/a/AmanThanvi/winghostty/1.3.118/AmanThanvi.winghostty.installer.yaml @@ -8,6 +8,9 @@ Installers: - Architecture: x64 InstallerUrl: https://github.com/amanthanvi/winghostty/releases/download/v1.3.118/winghostty-1.3.118-windows-x64-setup.exe InstallerSha256: 96942F71EE27967468ACEBFABEA731FD8AB0B8029C6D76D161F48B3AD6E9ED4F +- Architecture: arm64 + InstallerUrl: https://github.com/amanthanvi/winghostty/releases/download/v1.3.118/winghostty-1.3.118-windows-arm64-setup.exe + InstallerSha256: 61D627D9750F12AAD99D5BD8A33306AF3E5B44E1E45DC18F0A8C0C801D70B7CF ManifestType: installer ManifestVersion: 1.12.0 ReleaseDate: 2026-07-12 diff --git a/manifests/a/a2aproject/a2acli/0.1.6/a2aproject.a2acli.installer.yaml b/manifests/a/a2aproject/a2acli/0.1.6/a2aproject.a2acli.installer.yaml new file mode 100644 index 000000000000..7770bae34efa --- /dev/null +++ b/manifests/a/a2aproject/a2acli/0.1.6/a2aproject.a2acli.installer.yaml @@ -0,0 +1,18 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: a2aproject.a2acli +PackageVersion: 0.1.6 +InstallerType: zip +NestedInstallerType: portable +Commands: +- a2acli +ReleaseDate: 2026-06-26 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/a2aproject/a2a-rs/releases/download/a2a-cli-v0.1.6/a2acli-v0.1.6-x86_64-pc-windows-msvc.zip + InstallerSha256: F357B665D37EDB9262C641F9C3261ECC80F06507C27A2AC00A3E824AB28CB397 + NestedInstallerFiles: + - RelativeFilePath: a2acli-v0.1.6-x86_64-pc-windows-msvc\a2acli.exe + PortableCommandAlias: a2acli +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/a2aproject/a2acli/0.1.6/a2aproject.a2acli.locale.en-US.yaml b/manifests/a/a2aproject/a2acli/0.1.6/a2aproject.a2acli.locale.en-US.yaml new file mode 100644 index 000000000000..b88f95cc874d --- /dev/null +++ b/manifests/a/a2aproject/a2acli/0.1.6/a2aproject.a2acli.locale.en-US.yaml @@ -0,0 +1,24 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: a2aproject.a2acli +PackageVersion: 0.1.6 +PackageLocale: en-US +Publisher: a2aproject +PublisherUrl: https://github.com/a2aproject +PublisherSupportUrl: https://github.com/a2aproject/a2a-rs/issues +Author: AGNTCY Contributors +PackageName: a2acli +PackageUrl: https://github.com/a2aproject/a2a-rs +License: Apache-2.0 +LicenseUrl: https://github.com/a2aproject/a2a-rs/blob/a2a-cli-v0.1.6/LICENSE.md +ShortDescription: Standalone A2A CLI client +Moniker: a2acli +Tags: +- a2a +- agent +- cli +- llm +- protocol +ReleaseNotesUrl: https://github.com/a2aproject/a2a-rs/releases/tag/a2a-cli-v0.1.6 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/a2aproject/a2acli/0.1.6/a2aproject.a2acli.yaml b/manifests/a/a2aproject/a2acli/0.1.6/a2aproject.a2acli.yaml new file mode 100644 index 000000000000..202eda585f38 --- /dev/null +++ b/manifests/a/a2aproject/a2acli/0.1.6/a2aproject.a2acli.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: a2aproject.a2acli +PackageVersion: 0.1.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/a/alagrede/znote/4.2.2/alagrede.znote.installer.yaml b/manifests/a/alagrede/znote/4.2.2/alagrede.znote.installer.yaml new file mode 100644 index 000000000000..7802bf580c9e --- /dev/null +++ b/manifests/a/alagrede/znote/4.2.2/alagrede.znote.installer.yaml @@ -0,0 +1,19 @@ +# 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: alagrede.znote +PackageVersion: 4.2.2 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: user +ProductCode: d78f7af5-e430-5336-833a-b60cdee6f0ec +ReleaseDate: 2026-07-14 +AppsAndFeaturesEntries: +- DisplayName: znote 4.2.2 + ProductCode: d78f7af5-e430-5336-833a-b60cdee6f0ec +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/alagrede/znote-app/releases/download/v4.2.2/znote-Setup-4.2.2.exe + InstallerSha256: D763A9BD4CD518B04FCCBDEFE68C5A3CAED34A976FA3BDCC39F7BA55345E717C +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/alagrede/znote/4.2.2/alagrede.znote.locale.en-US.yaml b/manifests/a/alagrede/znote/4.2.2/alagrede.znote.locale.en-US.yaml new file mode 100644 index 000000000000..debcb4f7900a --- /dev/null +++ b/manifests/a/alagrede/znote/4.2.2/alagrede.znote.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: alagrede.znote +PackageVersion: 4.2.2 +PackageLocale: en-US +Publisher: alagrede +PublisherUrl: https://github.com/alagrede +PublisherSupportUrl: https://github.com/alagrede/znote-app/issues +PackageName: znote +PackageUrl: https://github.com/alagrede/znote-app +License: Freeware +ShortDescription: Markdown-based note-taking app for developers +Tags: +- dev +- editor +- electron +- markdown +- react +- znote +ReleaseNotes: |- + Znote 4.2.2 + Small bugfix. + - 🩹 No more content loss on a fresh note: pasting into a just-created note and switching away immediately could lose the pasted content — every edit is now reliably saved, including a single paste right after creation. + - 💾 Edits survive a quick quit: a change made in the very last second before closing the app is now flushed to disk. + - 🔄 Sync-friendly closes: closing Znote no longer rewrites the active note when nothing changed — sync tools (iCloud, git, Obsidian Sync…) stop seeing a phantom modification on every close. + - 🔗 "Reveal in Treeview" works on linked files: it now expands the "Linked files" group and highlights the file. +ReleaseNotesUrl: https://github.com/alagrede/znote-app/releases/tag/v4.2.2 +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://znote.io/faq.html +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/alagrede/znote/4.2.2/alagrede.znote.yaml b/manifests/a/alagrede/znote/4.2.2/alagrede.znote.yaml new file mode 100644 index 000000000000..f153cacd2856 --- /dev/null +++ b/manifests/a/alagrede/znote/4.2.2/alagrede.znote.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: alagrede.znote +PackageVersion: 4.2.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/a/arviceblot/eso-addon-manager/0.4.22/arviceblot.eso-addon-manager.installer.yaml b/manifests/a/arviceblot/eso-addon-manager/0.4.22/arviceblot.eso-addon-manager.installer.yaml new file mode 100644 index 000000000000..6fed9e2a10e7 --- /dev/null +++ b/manifests/a/arviceblot/eso-addon-manager/0.4.22/arviceblot.eso-addon-manager.installer.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: arviceblot.eso-addon-manager +PackageVersion: 0.4.22 +InstallerType: portable +InstallModes: +- silent +UpgradeBehavior: install +ReleaseDate: 2026-06-15 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/arviceblot/eso-addons/releases/download/v0.4.22/eso-addon-manager-x86_64-pc-windows-msvc.exe + InstallerSha256: 49BBF202E3D81FE691EF7215BD547B6A5EA16347B34E9D62DE988CB1A61EDF20 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/arviceblot/eso-addon-manager/0.4.22/arviceblot.eso-addon-manager.locale.en-US.yaml b/manifests/a/arviceblot/eso-addon-manager/0.4.22/arviceblot.eso-addon-manager.locale.en-US.yaml new file mode 100644 index 000000000000..f3d0bf8c6777 --- /dev/null +++ b/manifests/a/arviceblot/eso-addon-manager/0.4.22/arviceblot.eso-addon-manager.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: arviceblot.eso-addon-manager +PackageVersion: 0.4.22 +PackageLocale: en-US +Publisher: arviceblot +PublisherUrl: https://github.com/arviceblot +PublisherSupportUrl: https://github.com/arviceblot/eso-addons/issues +Author: arviceblot +PackageName: ESO Addon Manager +PackageUrl: https://github.com/arviceblot/eso-addons +License: MIT +LicenseUrl: https://github.com/arviceblot/eso-addons/blob/HEAD/LICENSE +ShortDescription: Cross platform addon manager for the Elder Scrolls Online +Moniker: eso-addon-manager +ReleaseNotesUrl: https://github.com/arviceblot/eso-addons/releases/tag/v0.4.22 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/arviceblot/eso-addon-manager/0.4.22/arviceblot.eso-addon-manager.yaml b/manifests/a/arviceblot/eso-addon-manager/0.4.22/arviceblot.eso-addon-manager.yaml new file mode 100644 index 000000000000..326b84f7d088 --- /dev/null +++ b/manifests/a/arviceblot/eso-addon-manager/0.4.22/arviceblot.eso-addon-manager.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: arviceblot.eso-addon-manager +PackageVersion: 0.4.22 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/a/autobrr/upbrr/gui/0.2.2/autobrr.upbrr.gui.installer.yaml b/manifests/a/autobrr/upbrr/gui/0.2.2/autobrr.upbrr.gui.installer.yaml new file mode 100644 index 000000000000..d63ed1167954 --- /dev/null +++ b/manifests/a/autobrr/upbrr/gui/0.2.2/autobrr.upbrr.gui.installer.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: autobrr.upbrr.gui +PackageVersion: 0.2.2 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: upbrr-gui.exe + PortableCommandAlias: upbrr +InstallModes: +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- upbrr +ReleaseDate: 2026-06-30 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/autobrr/upbrr/releases/download/v0.2.2/upbrr-gui-v0.2.2-windows-x64.zip + InstallerSha256: CF92E1246B5031490E789926DB426E39B051C0ED16D8ECB76648891D67AC3945 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/autobrr/upbrr/gui/0.2.2/autobrr.upbrr.gui.locale.en-US.yaml b/manifests/a/autobrr/upbrr/gui/0.2.2/autobrr.upbrr.gui.locale.en-US.yaml new file mode 100644 index 000000000000..8c25db7b0e01 --- /dev/null +++ b/manifests/a/autobrr/upbrr/gui/0.2.2/autobrr.upbrr.gui.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: autobrr.upbrr.gui +PackageVersion: 0.2.2 +PackageLocale: en-US +Publisher: autobrr +PublisherUrl: https://github.com/autobrr +PublisherSupportUrl: https://github.com/autobrr/upbrr/issues +Author: autobrr +PackageName: upbrr GUI +PackageUrl: https://github.com/autobrr/upbrr +License: GPL-2.0 +LicenseUrl: https://github.com/autobrr/upbrr/blob/HEAD/LICENSE +ShortDescription: upbrr is an upload preparation app for private-tracker workflows. +Moniker: upbrr-gui +ReleaseNotes: |- + What's Changed + - chore: credential protection robustness by @Audionut in #175 + - fix(gui): preserve pathed dupe tracker status by @Audionut in #176 + - chore: update mediainfo by @Audionut in #177 + Full Changelog: v0.2.1...v0.2.2 +ReleaseNotesUrl: https://github.com/autobrr/upbrr/releases/tag/v0.2.2 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/autobrr/upbrr/gui/0.2.2/autobrr.upbrr.gui.yaml b/manifests/a/autobrr/upbrr/gui/0.2.2/autobrr.upbrr.gui.yaml new file mode 100644 index 000000000000..64795e4a5e0e --- /dev/null +++ b/manifests/a/autobrr/upbrr/gui/0.2.2/autobrr.upbrr.gui.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: autobrr.upbrr.gui +PackageVersion: 0.2.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/b/BenjaminLarsson/Rtl_433/MSVC/25.02/BenjaminLarsson.Rtl_433.MSVC.installer.yaml b/manifests/b/BenjaminLarsson/Rtl_433/MSVC/25.02/BenjaminLarsson.Rtl_433.MSVC.installer.yaml new file mode 100644 index 000000000000..6d670658d695 --- /dev/null +++ b/manifests/b/BenjaminLarsson/Rtl_433/MSVC/25.02/BenjaminLarsson.Rtl_433.MSVC.installer.yaml @@ -0,0 +1,34 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: BenjaminLarsson.Rtl_433.MSVC +PackageVersion: '25.02' +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: rtl_433-rtlsdr-soapysdr-tls.exe + PortableCommandAlias: rtl_433-rtlsdr-soapysdr-tls +- RelativeFilePath: rtl_433-rtlsdr-soapysdr.exe + PortableCommandAlias: rtl_433-rtlsdr-soapysdr +- RelativeFilePath: rtl_433-rtlsdr-tls.exe + PortableCommandAlias: rtl_433-rtlsdr-tls +- RelativeFilePath: rtl_433-rtlsdr.exe + PortableCommandAlias: rtl_433-rtlsdr +- RelativeFilePath: rtl_433.exe + PortableCommandAlias: rtl_433 +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: uninstallPrevious +Dependencies: + PackageDependencies: + - PackageIdentifier: ShiningLight.OpenSSL.Dev +ReleaseDate: 2025-02-19 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/merbanan/rtl_433/releases/download/25.02/rtl_433-win-msvc-x64-25.02.zip + InstallerSha256: A221ED97101A95ABF9CF869E1D8EF0FA77BE7D02C8ABC0807480AE7BC01E1C20 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/BenjaminLarsson/Rtl_433/MSVC/25.02/BenjaminLarsson.Rtl_433.MSVC.locale.en-US.yaml b/manifests/b/BenjaminLarsson/Rtl_433/MSVC/25.02/BenjaminLarsson.Rtl_433.MSVC.locale.en-US.yaml new file mode 100644 index 000000000000..0956473f4e2c --- /dev/null +++ b/manifests/b/BenjaminLarsson/Rtl_433/MSVC/25.02/BenjaminLarsson.Rtl_433.MSVC.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: BenjaminLarsson.Rtl_433.MSVC +PackageVersion: '25.02' +PackageLocale: en-US +Publisher: Benjamin Larsson +PublisherUrl: https://github.com/merbanan +PublisherSupportUrl: https://github.com/merbanan/rtl_433/issues +Author: Benjamin Larsson +PackageName: Rtl_433 MSVC +PackageUrl: https://github.com/merbanan/rtl_433 +License: GPL-2.0 +LicenseUrl: https://github.com/merbanan/rtl_433/blob/master/COPYING +Copyright: Copyright © Benjamin Larsson +CopyrightUrl: https://github.com/merbanan/rtl_433/blob/master/COPYING +ShortDescription: Program to decode radio transmissions from devices on the ISM bands (and other frequencies) +Description: rtl_433 (despite the name) is a generic data receiver, mainly for the 433.92 MHz, 868 MHz (SRD), 315 MHz, 345 MHz, and 915 MHz ISM bands. +Moniker: rtl_433_msvc +Tags: +- 433mhz +- rf +- rtl-sdr +- sdr +- sensors +- signal-processing +ReleaseNotes: |- + Breaking Changes + - Changed state key value to ON/OFF, BREAKING CHANGE for Waveman-Switch (#2946) + Highlights + - Added support for General Motors TPMS (#3191) + - Added Globe Thermometer for 8-in-1 sensor to Bresser-7in1 (#3193) + - Added rain start detection feature for WS90 sensor (#3183) + - Added id key to IDM and NETIDM (#3164) + - Added decoder conf for Hormann remotes (#3162) + - Added client cert option to HA script (#3160) + - Added support for Revolt ZX-7717 power meter (#3125) + - Added support for Gridstream RF protocol from Landis & Gyr meters (#2616) + - Added decoder conf for Rako wireless lighting controls (#3124) + - Added support for Quinetic Switches and Sensors (#3098) + - Added support for DeltaDore X3D (#1911) + - Fixed Prometheus exposition format for metrics endpoint (#3107) + - Added support for Bresser/Explore Scientific ST1005H (#3092) + - Improved HA script to round battery level display (#3100) + - Fixed M-Bus Mode C Format B for wmbusmeters (#3091) + - Added support for Thermopro TP828B Meat Thermometers 2 probes (#3085) + - Added support for Arexx TL-3TSN, TSN-33MN and similar sensors (#3076) + - Improved decoder conf qx-30x to support multiple switches and multi-gang versions (#3008) + Changed + - Changed LandisGyr-GS location output (#3185) + - Changed Rubicson, Nexus, Solight-TE44, Baldr-Rain priority (#3175) + - Added energy msg to Revolt-ZX7717 + - Added broadcast flag for syslog output (#3171) + - Fixed argument handling in sigrok file generation (#3161) + - Fixed MQTT reconnect timer (closes #3145) + - Added reconnect throttling to Influx output (#3135) + - Added reconnect throttling to MQTT output (#3134) +ReleaseNotesUrl: https://github.com/merbanan/rtl_433/releases/tag/25.02 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/BenjaminLarsson/Rtl_433/MSVC/25.02/BenjaminLarsson.Rtl_433.MSVC.yaml b/manifests/b/BenjaminLarsson/Rtl_433/MSVC/25.02/BenjaminLarsson.Rtl_433.MSVC.yaml new file mode 100644 index 000000000000..d39b76c28696 --- /dev/null +++ b/manifests/b/BenjaminLarsson/Rtl_433/MSVC/25.02/BenjaminLarsson.Rtl_433.MSVC.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: BenjaminLarsson.Rtl_433.MSVC +PackageVersion: '25.02' +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/b/BenthicSoftware/GoldSqall/2/2.2.0.244/BenthicSoftware.GoldSqall.2.installer.yaml b/manifests/b/BenthicSoftware/GoldSqall/2/2.4.0.244/BenthicSoftware.GoldSqall.2.installer.yaml similarity index 84% rename from manifests/b/BenthicSoftware/GoldSqall/2/2.2.0.244/BenthicSoftware.GoldSqall.2.installer.yaml rename to manifests/b/BenthicSoftware/GoldSqall/2/2.4.0.244/BenthicSoftware.GoldSqall.2.installer.yaml index ca308312f7f6..597d0bca9f1a 100644 --- a/manifests/b/BenthicSoftware/GoldSqall/2/2.2.0.244/BenthicSoftware.GoldSqall.2.installer.yaml +++ b/manifests/b/BenthicSoftware/GoldSqall/2/2.4.0.244/BenthicSoftware.GoldSqall.2.installer.yaml @@ -2,8 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: BenthicSoftware.GoldSqall.2 -PackageVersion: 2.2.0.244 -InstallerLocale: en-US +PackageVersion: 2.4.0.244 InstallerType: inno Scope: machine UpgradeBehavior: install @@ -15,16 +14,14 @@ Installers: - Architecture: x86 InstallerUrl: https://www.benthicsoftware.com/apps/goldsqall2setup244_32bit.exe InstallerSha256: 6749BC94862061FAE9CC5C81D9099FB204AC169702DC6241CF2D630F4F628B5B - ProductCode: Golden232_is1 + ProductCode: GoldSqall232_is1 AppsAndFeaturesEntries: - DisplayName: 'Benthic Software: GoldSqall 2.x 32bit' - ProductCode: GoldSqall232_is1 - Architecture: x64 InstallerUrl: https://www.benthicsoftware.com/apps/goldsqall2setup244_64bit.exe InstallerSha256: E3D1CEC04A7D2B2406783504DACE4CB3DB48CA15167BF1AAD650183C29BD0A5A - ProductCode: Golden264_is1 + ProductCode: GoldSqall264_is1 AppsAndFeaturesEntries: - DisplayName: 'Benthic Software: GoldSqall 2.x 64bit' - ProductCode: GoldSqall264_is1 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/b/BenthicSoftware/GoldSqall/2/2.2.0.244/BenthicSoftware.GoldSqall.2.locale.en-US.yaml b/manifests/b/BenthicSoftware/GoldSqall/2/2.4.0.244/BenthicSoftware.GoldSqall.2.locale.en-US.yaml similarity index 98% rename from manifests/b/BenthicSoftware/GoldSqall/2/2.2.0.244/BenthicSoftware.GoldSqall.2.locale.en-US.yaml rename to manifests/b/BenthicSoftware/GoldSqall/2/2.4.0.244/BenthicSoftware.GoldSqall.2.locale.en-US.yaml index 340fa60904d1..41c5a593e25a 100644 --- a/manifests/b/BenthicSoftware/GoldSqall/2/2.2.0.244/BenthicSoftware.GoldSqall.2.locale.en-US.yaml +++ b/manifests/b/BenthicSoftware/GoldSqall/2/2.4.0.244/BenthicSoftware.GoldSqall.2.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: BenthicSoftware.GoldSqall.2 -PackageVersion: 2.2.0.244 +PackageVersion: 2.4.0.244 PackageLocale: en-US Publisher: Benthic Software PublisherUrl: https://www.benthicsoftware.com/ diff --git a/manifests/b/BenthicSoftware/GoldSqall/2/2.2.0.244/BenthicSoftware.GoldSqall.2.locale.zh-CN.yaml b/manifests/b/BenthicSoftware/GoldSqall/2/2.4.0.244/BenthicSoftware.GoldSqall.2.locale.zh-CN.yaml similarity index 96% rename from manifests/b/BenthicSoftware/GoldSqall/2/2.2.0.244/BenthicSoftware.GoldSqall.2.locale.zh-CN.yaml rename to manifests/b/BenthicSoftware/GoldSqall/2/2.4.0.244/BenthicSoftware.GoldSqall.2.locale.zh-CN.yaml index 24c83f4c4d73..34bd9074b710 100644 --- a/manifests/b/BenthicSoftware/GoldSqall/2/2.2.0.244/BenthicSoftware.GoldSqall.2.locale.zh-CN.yaml +++ b/manifests/b/BenthicSoftware/GoldSqall/2/2.4.0.244/BenthicSoftware.GoldSqall.2.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: BenthicSoftware.GoldSqall.2 -PackageVersion: 2.2.0.244 +PackageVersion: 2.4.0.244 PackageLocale: zh-CN License: 专有软件 ShortDescription: 多数据库查询工具 diff --git a/manifests/b/BenthicSoftware/GoldSqall/2/2.2.0.244/BenthicSoftware.GoldSqall.2.yaml b/manifests/b/BenthicSoftware/GoldSqall/2/2.4.0.244/BenthicSoftware.GoldSqall.2.yaml similarity index 90% rename from manifests/b/BenthicSoftware/GoldSqall/2/2.2.0.244/BenthicSoftware.GoldSqall.2.yaml rename to manifests/b/BenthicSoftware/GoldSqall/2/2.4.0.244/BenthicSoftware.GoldSqall.2.yaml index 6a2a3100f530..2e695382b353 100644 --- a/manifests/b/BenthicSoftware/GoldSqall/2/2.2.0.244/BenthicSoftware.GoldSqall.2.yaml +++ b/manifests/b/BenthicSoftware/GoldSqall/2/2.4.0.244/BenthicSoftware.GoldSqall.2.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: BenthicSoftware.GoldSqall.2 -PackageVersion: 2.2.0.244 +PackageVersion: 2.4.0.244 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/b/Byron/dua-cli/2.38.0/Byron.dua-cli.installer.yaml b/manifests/b/Byron/dua-cli/2.38.0/Byron.dua-cli.installer.yaml new file mode 100644 index 000000000000..3bd806e4c622 --- /dev/null +++ b/manifests/b/Byron/dua-cli/2.38.0/Byron.dua-cli.installer.yaml @@ -0,0 +1,24 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Byron.dua-cli +PackageVersion: 2.38.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: dua-v2.38.0-x86_64-pc-windows-msvc/dua.exe +InstallModes: +- silent +UpgradeBehavior: install +Commands: +- dua +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Byron/dua-cli/releases/download/v2.38.0/dua-v2.38.0-x86_64-pc-windows-msvc.zip + InstallerSha256: C627401B5644A2D0179714FC22946ED6E2F646ED528CA36BB3F6B790C3C8529C +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/Byron/dua-cli/2.38.0/Byron.dua-cli.locale.en-US.yaml b/manifests/b/Byron/dua-cli/2.38.0/Byron.dua-cli.locale.en-US.yaml new file mode 100644 index 000000000000..2180f1f4781e --- /dev/null +++ b/manifests/b/Byron/dua-cli/2.38.0/Byron.dua-cli.locale.en-US.yaml @@ -0,0 +1,61 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Byron.dua-cli +PackageVersion: 2.38.0 +PackageLocale: en-US +Publisher: Sebastian Thiel +PublisherUrl: https://github.com/Byron +PublisherSupportUrl: https://github.com/Byron/dua-cli/issues +Author: Sebastian Thiel +PackageName: Disk Usage Analyzer +PackageUrl: https://github.com/Byron/dua-cli +License: MIT +LicenseUrl: https://github.com/Byron/dua-cli/blob/HEAD/LICENSE +Copyright: © Sebastian Thiel +CopyrightUrl: https://github.com/Byron/dua-cli/raw/main/LICENSE +ShortDescription: View disk space usage and delete unwanted data, fast. +Description: dua (→ Disk Usage Analyzer) is a tool to conveniently learn about the usage of disk space of a given directory. It's parallel by default and will max out your SSD, providing relevant information as fast as possible. Optionally delete superfluous data, and do so more quickly than rm. +Moniker: dua +Tags: +- cleaner +- disk-usage-analyser +- disk-usage-analyzer +- diskusageanalyser +- diskusageanalyzer +- duacli +- harddisk +- harddrive +- requirescmd +- space-use +- ssd +ReleaseNotes: |- + New Features + - notify after interactive work when unfocused + Interactive scans, refreshes, deletion, and trash operations can take long + enough that users leave the terminal, but dua previously had no way to signal + completion without exiting the TUI. + Track terminal focus events and emit sanitized OSC 777 notifications only when + the terminal is unfocused. Include concise entry, byte, duration, and error + statistics, and add a notifications config section whose scan_finished and + delete_finished switches default to true. + + Commit Statistics + - 7 commits contributed to the release over the course of 6 calendar days. + - 1 commit was understood as conventional. + - 1 unique issue was worked on: #347 + + Commit Details + view details + - #347 + - Notify after interactive work when unfocused (d800f22) + - Uncategorized + - Merge pull request #348 from Byron/notify-when-done-and-unfocussed (92f4502) + - Merge pull request #346 from rlex/apple_silicon_ci (0c81cb8) + - Review (08d960e) + - Arm64 osx gh build (2d8b45f) + - Merge pull request #345 from luhenry/main (11892d5) + - Add release for linux-riscv64 (a90b5d8) +ReleaseNotesUrl: https://github.com/Byron/dua-cli/releases/tag/v2.38.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/Byron/dua-cli/2.38.0/Byron.dua-cli.yaml b/manifests/b/Byron/dua-cli/2.38.0/Byron.dua-cli.yaml new file mode 100644 index 000000000000..1e1068d10502 --- /dev/null +++ b/manifests/b/Byron/dua-cli/2.38.0/Byron.dua-cli.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: Byron.dua-cli +PackageVersion: 2.38.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/b/b7s/Plume/0.1.0/b7s.Plume.installer.yaml b/manifests/b/b7s/Plume/0.1.0/b7s.Plume.installer.yaml new file mode 100644 index 000000000000..3dcdd7a17020 --- /dev/null +++ b/manifests/b/b7s/Plume/0.1.0/b7s.Plume.installer.yaml @@ -0,0 +1,22 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json +PackageIdentifier: b7s.Plume +PackageVersion: 0.1.0 +InstallerLocale: en-US +Platform: + - Windows.Desktop +MinimumOSVersion: 10.0.17763.0 +InstallerType: exe +Scope: user +InstallModes: + - silent + - silentWithProgress +InstallerSwitches: + Silent: /S + SilentWithProgress: /S +UpgradeBehavior: install +Installers: + - Architecture: x86 + InstallerUrl: https://github.com/b7s/plume/releases/download/plume-v0.1.0/Plume_0.1.0_x64-setup.exe + InstallerSha256: 52D203E1ACEF17F41EA55DD04AC1D26F5FFA6D45AAB1AC4041F26F716BF545DF +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/b7s/Plume/0.1.0/b7s.Plume.locale.en-US.yaml b/manifests/b/b7s/Plume/0.1.0/b7s.Plume.locale.en-US.yaml new file mode 100644 index 000000000000..e0de55f41565 --- /dev/null +++ b/manifests/b/b7s/Plume/0.1.0/b7s.Plume.locale.en-US.yaml @@ -0,0 +1,29 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json +PackageIdentifier: b7s.Plume +PackageVersion: 0.1.0 +PackageLocale: en-US +Publisher: b7s +PublisherUrl: https://github.com/b7s/plume +PublisherSupportUrl: https://github.com/b7s/plume/issues +PackageName: Plume +PackageUrl: https://github.com/b7s/plume +License: MIT +LicenseUrl: https://github.com/b7s/plume/blob/master/LICENSE +ShortDescription: Floating typing assistant for Windows. Sits as a transparent overlay above your active window, listens via UI Automation, and serves up smart suggestions — spelling corrections, AI next-word predictions, translation, and text actions. +Description: Plume uses Windows UI Automation (UIAutomation TextPattern/ValuePattern) to detect what you are typing. When you stop typing, it reads the last word from the focused text field, runs it through Hunspell for spelling corrections, sends the surrounding context to your chosen LLM for next-word suggestions, and shows the results in a floating transparent overlay. Click a chip to copy or insert. +Moniker: plume +Tags: + - ai + - assistant + - clipboard + - llm + - overlay + - spellcheck + - suggestions + - transcription + - translation + - typing + - uiautomation + - utility +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/b7s/Plume/0.1.0/b7s.Plume.yaml b/manifests/b/b7s/Plume/0.1.0/b7s.Plume.yaml new file mode 100644 index 000000000000..f1cf8faf7c9b --- /dev/null +++ b/manifests/b/b7s/Plume/0.1.0/b7s.Plume.yaml @@ -0,0 +1,6 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json +PackageIdentifier: b7s.Plume +PackageVersion: 0.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/b/blacktop/ipsw/3.1.703/blacktop.ipsw.installer.yaml b/manifests/b/blacktop/ipsw/3.1.703/blacktop.ipsw.installer.yaml new file mode 100644 index 000000000000..32e688d1df20 --- /dev/null +++ b/manifests/b/blacktop/ipsw/3.1.703/blacktop.ipsw.installer.yaml @@ -0,0 +1,26 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json +PackageIdentifier: blacktop.ipsw +PackageVersion: 3.1.703 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2026-07-14" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipsw.exe + PortableCommandAlias: ipsw + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.703/ipsw_3.1.703_windows_arm64.zip + InstallerSha256: 2e72114893f661461d17ec7ca1df2467df5e9e05d9afd31b3678f88810fad7d9 + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipsw.exe + PortableCommandAlias: ipsw + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.703/ipsw_3.1.703_windows_x86_64.zip + InstallerSha256: 697a616be32ec822063158861b47d305cbdbca80702b6bc0095c6f8d2c10354a + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/blacktop/ipsw/3.1.703/blacktop.ipsw.locale.en-US.yaml b/manifests/b/blacktop/ipsw/3.1.703/blacktop.ipsw.locale.en-US.yaml new file mode 100644 index 000000000000..0402ca91e26f --- /dev/null +++ b/manifests/b/blacktop/ipsw/3.1.703/blacktop.ipsw.locale.en-US.yaml @@ -0,0 +1,13 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json +PackageIdentifier: blacktop.ipsw +PackageVersion: 3.1.703 +PackageLocale: en-US +Publisher: blacktop +PackageName: ipsw +PackageUrl: https://github.com/blacktop/ipsw +License: MIT +ShortDescription: iOS/macOS Research Swiss Army Knife +Moniker: ipsw +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/blacktop/ipsw/3.1.703/blacktop.ipsw.yaml b/manifests/b/blacktop/ipsw/3.1.703/blacktop.ipsw.yaml new file mode 100644 index 000000000000..2e454207e824 --- /dev/null +++ b/manifests/b/blacktop/ipsw/3.1.703/blacktop.ipsw.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json +PackageIdentifier: blacktop.ipsw +PackageVersion: 3.1.703 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/c/Chromium/ChromeDriver/150.0.7871.124/Chromium.ChromeDriver.installer.yaml b/manifests/c/Chromium/ChromeDriver/150.0.7871.124/Chromium.ChromeDriver.installer.yaml new file mode 100644 index 000000000000..2c777bd5a60a --- /dev/null +++ b/manifests/c/Chromium/ChromeDriver/150.0.7871.124/Chromium.ChromeDriver.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: Chromium.ChromeDriver +PackageVersion: 150.0.7871.124 +InstallerType: zip +NestedInstallerType: portable +ReleaseDate: 2026-07-13 +Installers: +- Architecture: x86 + NestedInstallerFiles: + - RelativeFilePath: chromedriver-win32/chromedriver.exe + InstallerUrl: https://storage.googleapis.com/chrome-for-testing-public/150.0.7871.124/win32/chromedriver-win32.zip + InstallerSha256: 4FB5C3B320C3812015212D3C0DF3CD0A91ADBA73458BA3AF31F8F5AC918F72D0 +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: chromedriver-win64/chromedriver.exe + InstallerUrl: https://storage.googleapis.com/chrome-for-testing-public/150.0.7871.124/win64/chromedriver-win64.zip + InstallerSha256: EFAAD86697E9CAE04AEA24B8A49DB49605E276F5B308C8AD903868977DCEE793 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/Chromium/ChromeDriver/150.0.7871.124/Chromium.ChromeDriver.locale.en-US.yaml b/manifests/c/Chromium/ChromeDriver/150.0.7871.124/Chromium.ChromeDriver.locale.en-US.yaml new file mode 100644 index 000000000000..eb95c1e1b2d0 --- /dev/null +++ b/manifests/c/Chromium/ChromeDriver/150.0.7871.124/Chromium.ChromeDriver.locale.en-US.yaml @@ -0,0 +1,18 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Chromium.ChromeDriver +PackageVersion: 150.0.7871.124 +PackageLocale: en-US +Publisher: Chromium +PublisherUrl: https://www.chromium.org/ +PackageName: ChromeDriver +PackageUrl: https://chromedriver.chromium.org/ +License: Proprietary +Copyright: Copyright 2015 The Chromium Authors +ShortDescription: An open source tool for automated testing of webapps across many browsers +Description: WebDriver is an open source tool for automated testing of webapps across many browsers. It provides capabilities for navigating to web pages, user input, JavaScript execution, and more. ChromeDriver is a standalone server that implements the W3C WebDriver standard. ChromeDriver is available for Chrome on Android and Chrome on Desktop (Mac, Linux, Windows and ChromeOS). +Documentations: +- DocumentUrl: https://chromedriver.chromium.org/documentation +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/Chromium/ChromeDriver/150.0.7871.124/Chromium.ChromeDriver.yaml b/manifests/c/Chromium/ChromeDriver/150.0.7871.124/Chromium.ChromeDriver.yaml new file mode 100644 index 000000000000..46662ffc978c --- /dev/null +++ b/manifests/c/Chromium/ChromeDriver/150.0.7871.124/Chromium.ChromeDriver.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: Chromium.ChromeDriver +PackageVersion: 150.0.7871.124 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/c/Code-iX/QTiles/1.0.0/Code-iX.QTiles.installer.yaml b/manifests/c/Code-iX/QTiles/1.0.0/Code-iX.QTiles.installer.yaml new file mode 100644 index 000000000000..cf44f49793a3 --- /dev/null +++ b/manifests/c/Code-iX/QTiles/1.0.0/Code-iX.QTiles.installer.yaml @@ -0,0 +1,19 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Code-iX.QTiles +PackageVersion: 1.0.0 +InstallerType: wix +Scope: user +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Matt-17/QTiles/releases/download/v1.0.0/QTiles-1.0.0-x64.msi + InstallerSha256: 65AD469F853CB351E34CF3768E2FF07E1939691AE37DD19BA58F0089F402A773 + ProductCode: '{C5DAAED3-0D07-4034-B4E9-202A4CCC19B9}' +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/c/Code-iX/QTiles/1.0.0/Code-iX.QTiles.locale.en-US.yaml b/manifests/c/Code-iX/QTiles/1.0.0/Code-iX.QTiles.locale.en-US.yaml new file mode 100644 index 000000000000..e59521fb831d --- /dev/null +++ b/manifests/c/Code-iX/QTiles/1.0.0/Code-iX.QTiles.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.6.0.schema.json + +PackageIdentifier: Code-iX.QTiles +PackageVersion: 1.0.0 +PackageLocale: en-US +Publisher: Code-iX +PublisherUrl: https://github.com/Matt-17 +PublisherSupportUrl: https://github.com/Matt-17/QTiles/issues +PackageName: QTiles +PackageUrl: https://github.com/Matt-17/QTiles +License: MIT +LicenseUrl: https://github.com/Matt-17/QTiles/blob/master/LICENSE.txt +ShortDescription: Visual georeferencing and XYZ tile rendering for Windows. +Description: QTiles is a Windows desktop editor and command-line renderer for turning georeferenced raster images into standard XYZ map tiles. It focuses on manual raster georeferencing with control points, previewing alignment against a basemap, and rendering folder-based PNG, JPG, or WebP tile output plus TileJSON metadata. +Moniker: qtiles +Tags: +- georeferencing +- map +- raster +- renderer +- tilejson +- tiles +- xyz +ReleaseNotesUrl: https://github.com/Matt-17/QTiles/releases/tag/v1.0.0 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/c/Code-iX/QTiles/1.0.0/Code-iX.QTiles.yaml b/manifests/c/Code-iX/QTiles/1.0.0/Code-iX.QTiles.yaml new file mode 100644 index 000000000000..7a565cd06d1b --- /dev/null +++ b/manifests/c/Code-iX/QTiles/1.0.0/Code-iX.QTiles.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: Code-iX.QTiles +PackageVersion: 1.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/c/Cority/RSIGuard/CallCenterEdition/6.2.16.20260615/Cority.RSIGuard.CallCenterEdition.installer.yaml b/manifests/c/Cority/RSIGuard/CallCenterEdition/6.2.16.20260615/Cority.RSIGuard.CallCenterEdition.installer.yaml new file mode 100644 index 000000000000..1982f850433f --- /dev/null +++ b/manifests/c/Cority/RSIGuard/CallCenterEdition/6.2.16.20260615/Cority.RSIGuard.CallCenterEdition.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 v2.7.2 $debug=NVS1.CRLF.7-6-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Cority.RSIGuard.CallCenterEdition +PackageVersion: 6.2.16.20260615 +InstallerType: msi +InstallerSwitches: + InstallLocation: INSTALLDIR="" +FileExtensions: +- rxs +- tid +ProductCode: '{321E30CA-A06E-4A14-814B-CB626D80E33F}' +AppsAndFeaturesEntries: +- DisplayName: RSIGuard Stretch Edition +Installers: +- Architecture: x86 + InstallerUrl: https://www.rsiguard.com/download/pkgs/Trials/RSIGuard-Install-v6.2.16CC.msi + InstallerSha256: 628FFAF16A101F2B0B96281230A2610008B3D2C9FE27ED21DCE32B0F76660691 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/Cority/RSIGuard/CallCenterEdition/6.2.16.20260615/Cority.RSIGuard.CallCenterEdition.locale.en-US.yaml b/manifests/c/Cority/RSIGuard/CallCenterEdition/6.2.16.20260615/Cority.RSIGuard.CallCenterEdition.locale.en-US.yaml new file mode 100644 index 000000000000..9ed27cbac794 --- /dev/null +++ b/manifests/c/Cority/RSIGuard/CallCenterEdition/6.2.16.20260615/Cority.RSIGuard.CallCenterEdition.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.7.2 $debug=NVS1.CRLF.7-6-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Cority.RSIGuard.CallCenterEdition +PackageVersion: 6.2.16.20260615 +PackageLocale: en-US +Publisher: Cority +PublisherUrl: https://rsiguard.com/ +PublisherSupportUrl: https://rsiguard.com/productsupport/ +PrivacyUrl: https://www.cority.com/legal-center/privacy-policy/ +Author: Cority Software Inc +PackageName: RSIGuard Call Center Edition +PackageUrl: https://www.rsiguard.com/download/pkg.php?id=wincce +License: Proprietary +# LicenseUrl: +Copyright: Copyright 1999 - 2026 Cority, Inc. +# CopyrightUrl: +ShortDescription: A proven solution for repetitive Strain Injuries +Description: |- + Cority’s RSIGuard is award-winning desktop ergonomic software that helps prevent and manage repetitive strain injuries (RSI) for computer users. + It includes tools to promote healthier computer use, reduce exposure, and identify ways you can lower your risk. + Around the globe, health and safety managers, ergonomists, health practitioners, and individual computer users rely on RSIGuard’s comprehensive set of tools. +# Moniker: +Tags: +- health +- wellbeing +# ReleaseNotes: +# ReleaseNotesUrl: +PurchaseUrl: https://www.rsiguard.com/purchase/instant.php +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/Cority/RSIGuard/CallCenterEdition/6.2.16.20260615/Cority.RSIGuard.CallCenterEdition.locale.zh-CN.yaml b/manifests/c/Cority/RSIGuard/CallCenterEdition/6.2.16.20260615/Cority.RSIGuard.CallCenterEdition.locale.zh-CN.yaml new file mode 100644 index 000000000000..bea26aa5a06b --- /dev/null +++ b/manifests/c/Cority/RSIGuard/CallCenterEdition/6.2.16.20260615/Cority.RSIGuard.CallCenterEdition.locale.zh-CN.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 v2.7.2 $debug=NVS1.CRLF.7-6-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Cority.RSIGuard.CallCenterEdition +PackageVersion: 6.2.16.20260615 +PackageLocale: zh-CN +# Publisher: +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +# PackageName: +# PackageUrl: +License: 专有软件 +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: 针对重复性累积损伤的成熟解决方案 +Description: |- + Cority 的 RSIGuard 是一款屡获殊荣的桌面人体工程学软件,旨在帮助电脑用户预防和管理重复性劳损 (RSI)。 + 它包含了一系列工具,用于提倡更健康的电脑使用习惯、减少风险接触,并识别降低风险的方法。 + 在全球范围内,健康与安全经理、人体工程学专家、健康从业者以及个人电脑用户都信赖 RSIGuard 提供的整套综合工具。 +# Moniker: +Tags: +- 健康 +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/c/Cority/RSIGuard/CallCenterEdition/6.2.16.20260615/Cority.RSIGuard.CallCenterEdition.yaml b/manifests/c/Cority/RSIGuard/CallCenterEdition/6.2.16.20260615/Cority.RSIGuard.CallCenterEdition.yaml new file mode 100644 index 000000000000..0241e671c8f3 --- /dev/null +++ b/manifests/c/Cority/RSIGuard/CallCenterEdition/6.2.16.20260615/Cority.RSIGuard.CallCenterEdition.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.7.2 $debug=NVS1.CRLF.7-6-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Cority.RSIGuard.CallCenterEdition +PackageVersion: 6.2.16.20260615 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/c/Cority/RSIGuard/StretchEdition/6.2.16.20260615/Cority.RSIGuard.StretchEdition.installer.yaml b/manifests/c/Cority/RSIGuard/StretchEdition/6.2.16.20260615/Cority.RSIGuard.StretchEdition.installer.yaml new file mode 100644 index 000000000000..93c5c611d9d7 --- /dev/null +++ b/manifests/c/Cority/RSIGuard/StretchEdition/6.2.16.20260615/Cority.RSIGuard.StretchEdition.installer.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 v2.7.2 $debug=NVS1.CRLF.7-6-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Cority.RSIGuard.StretchEdition +PackageVersion: 6.2.16.20260615 +InstallerType: msi +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLDIR="" +FileExtensions: +- rxs +- tid +ProductCode: '{2A155957-B4A2-434F-BF88-5FEA121B72DE}' +Installers: +- Architecture: x86 + InstallerUrl: https://www.rsiguard.com/download/pkgs/Trials/RSIGuard-Install-v6.2.16SB.msi + InstallerSha256: D802BD0283A0424AB3DFE38EB1494E0272F3AA62F1DF08B143976D880B601FC3 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/Cority/RSIGuard/StretchEdition/6.2.16.20260615/Cority.RSIGuard.StretchEdition.locale.en-US.yaml b/manifests/c/Cority/RSIGuard/StretchEdition/6.2.16.20260615/Cority.RSIGuard.StretchEdition.locale.en-US.yaml new file mode 100644 index 000000000000..31b24023e714 --- /dev/null +++ b/manifests/c/Cority/RSIGuard/StretchEdition/6.2.16.20260615/Cority.RSIGuard.StretchEdition.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.7.2 $debug=NVS1.CRLF.7-6-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Cority.RSIGuard.StretchEdition +PackageVersion: 6.2.16.20260615 +PackageLocale: en-US +Publisher: Cority +PublisherUrl: https://rsiguard.com/ +PublisherSupportUrl: https://rsiguard.com/productsupport/ +PrivacyUrl: https://www.cority.com/legal-center/privacy-policy/ +Author: Cority Software Inc +PackageName: RSIGuard Stretch Edition +PackageUrl: https://www.rsiguard.com/download/pkg.php?id=winse +License: Proprietary +# LicenseUrl: +Copyright: Copyright 1999 - 2026 Cority, Inc. +# CopyrightUrl: +ShortDescription: A proven solution for repetitive Strain Injuries +Description: |- + Cority’s RSIGuard is award-winning desktop ergonomic software that helps prevent and manage repetitive strain injuries (RSI) for computer users. + It includes tools to promote healthier computer use, reduce exposure, and identify ways you can lower your risk. + Around the globe, health and safety managers, ergonomists, health practitioners, and individual computer users rely on RSIGuard’s comprehensive set of tools. +# Moniker: +Tags: +- health +- wellbeing +# ReleaseNotes: +# ReleaseNotesUrl: +PurchaseUrl: https://www.rsiguard.com/purchase/instant.php +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/Cority/RSIGuard/StretchEdition/6.2.16.20260615/Cority.RSIGuard.StretchEdition.locale.zh-CN.yaml b/manifests/c/Cority/RSIGuard/StretchEdition/6.2.16.20260615/Cority.RSIGuard.StretchEdition.locale.zh-CN.yaml new file mode 100644 index 000000000000..97ccfaa1a2c4 --- /dev/null +++ b/manifests/c/Cority/RSIGuard/StretchEdition/6.2.16.20260615/Cority.RSIGuard.StretchEdition.locale.zh-CN.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 v2.7.2 $debug=NVS1.CRLF.7-6-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Cority.RSIGuard.StretchEdition +PackageVersion: 6.2.16.20260615 +PackageLocale: zh-CN +# Publisher: +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +# PackageName: +# PackageUrl: +License: 专有软件 +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: 针对重复性累积损伤的成熟解决方案 +Description: |- + Cority 的 RSIGuard 是一款屡获殊荣的桌面人体工程学软件,旨在帮助电脑用户预防和管理重复性劳损 (RSI)。 + 它包含了一系列工具,用于提倡更健康的电脑使用习惯、减少风险接触,并识别降低风险的方法。 + 在全球范围内,健康与安全经理、人体工程学专家、健康从业者以及个人电脑用户都信赖 RSIGuard 提供的整套综合工具。 +# Moniker: +Tags: +- 健康 +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/c/Cority/RSIGuard/StretchEdition/6.2.16.20260615/Cority.RSIGuard.StretchEdition.yaml b/manifests/c/Cority/RSIGuard/StretchEdition/6.2.16.20260615/Cority.RSIGuard.StretchEdition.yaml new file mode 100644 index 000000000000..2ed24a1b3eb7 --- /dev/null +++ b/manifests/c/Cority/RSIGuard/StretchEdition/6.2.16.20260615/Cority.RSIGuard.StretchEdition.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.7.2 $debug=NVS1.CRLF.7-6-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Cority.RSIGuard.StretchEdition +PackageVersion: 6.2.16.20260615 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/c/can1357/oh-my-pi/16.5.1/can1357.oh-my-pi.installer.yaml b/manifests/c/can1357/oh-my-pi/16.5.1/can1357.oh-my-pi.installer.yaml new file mode 100644 index 000000000000..b5986a134cfb --- /dev/null +++ b/manifests/c/can1357/oh-my-pi/16.5.1/can1357.oh-my-pi.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: can1357.oh-my-pi +PackageVersion: 16.5.1 +InstallerType: portable +Commands: +- omp +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/can1357/oh-my-pi/releases/download/v16.5.1/omp-windows-x64.exe + InstallerSha256: C995730443A29EC7A5149B681BC23057B0C5DDC50B7FF39D2E67905F88780EA0 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/can1357/oh-my-pi/16.5.1/can1357.oh-my-pi.locale.en-US.yaml b/manifests/c/can1357/oh-my-pi/16.5.1/can1357.oh-my-pi.locale.en-US.yaml new file mode 100644 index 000000000000..4be4689d28c6 --- /dev/null +++ b/manifests/c/can1357/oh-my-pi/16.5.1/can1357.oh-my-pi.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: can1357.oh-my-pi +PackageVersion: 16.5.1 +PackageLocale: en-US +Publisher: Can Bölük +PublisherUrl: https://can.ac/ +PublisherSupportUrl: https://github.com/can1357/oh-my-pi/issues +Author: Can Bölük +PackageName: oh-my-pi +PackageUrl: https://omp.sh/ +License: MIT +LicenseUrl: https://github.com/can1357/oh-my-pi/blob/HEAD/LICENSE +Copyright: |- + Copyright (c) 2025 Mario Zechner + Copyright (c) 2025-2026 Can Bölük +ShortDescription: ⌥ AI Coding agent for the terminal — hash-anchored edits, optimized tool harness, LSP, Python, browser, subagents, and more +Description: |- + omp is a terminal-first coding agent that runs on your machine, talks to any provider, and treats sessions like git branches. + omp (pronounced “oh-em-pi”, binary omp) is a fork of Mario Zechner’s Pi. It runs as a single Bun process, drives any model provider you have credentials for, and ships a flat tool surface the model uses to read code, run commands, edit files, drive a debugger, and spawn subagents that coordinate over an in-process IRC bus. + Sessions persist as JSONL under ~/.omp/agent/sessions/. You resume, fork, branch, and share them. Settings, credentials, plugins, and caches all live under ~/.omp/agent/. Nothing leaves the machine unless you call a tool that does. +Tags: +- agent +- agentic +- ai +- chatbot +- code +- coding +- large-language-model +- llm +- programming +ReleaseNotesUrl: https://github.com/can1357/oh-my-pi/releases/tag/v16.5.1 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://omp.sh/docs +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/can1357/oh-my-pi/16.5.1/can1357.oh-my-pi.locale.zh-CN.yaml b/manifests/c/can1357/oh-my-pi/16.5.1/can1357.oh-my-pi.locale.zh-CN.yaml new file mode 100644 index 000000000000..d7ff2047c6d0 --- /dev/null +++ b/manifests/c/can1357/oh-my-pi/16.5.1/can1357.oh-my-pi.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: can1357.oh-my-pi +PackageVersion: 16.5.1 +PackageLocale: zh-CN +ShortDescription: ⌥ 用于终端的 AI 编码智能体 —— 哈希锚定编辑、优化的工具集成、LSP、Python、浏览器、子智能体等更多功能 +Description: |- + omp 是一个以终端为先的编码智能体,运行在你的机器上,可连接任意提供商,并将会话视为 git 分支处理。 + omp(读作“oh-em-pi”,二进制名为 omp)是 Mario Zechner 的 Pi 项目的一个分支。它作为一个独立的 Bun 进程运行,驱动任何你拥有凭据的模型提供商,并提供一个扁平化的工具接口,供模型用于读取代码、执行命令、编辑文件、控制调试器,以及生成通过进程内 IRC 总线进行协作的子智能体。 + 会话以 JSONL 格式持久化存储在 ~/.omp/agent/sessions/ 目录下。你可以恢复、分叉、分支和共享这些会话。设置、凭据、插件和缓存全部存放在 ~/.omp/agent/ 目录中。除非你调用某个会向外传输数据的工具,否则没有任何内容会离开你的机器。 +Tags: +- 人工智能 +- 代码 +- 大语言模型 +- 智能体 +- 编程 +- 聊天机器人 +- 自主智能 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://omp.sh/docs +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GaoyangZhang/EasyClaw/1.7.1/GaoyangZhang.EasyClaw.yaml b/manifests/c/can1357/oh-my-pi/16.5.1/can1357.oh-my-pi.yaml similarity index 76% rename from manifests/g/GaoyangZhang/EasyClaw/1.7.1/GaoyangZhang.EasyClaw.yaml rename to manifests/c/can1357/oh-my-pi/16.5.1/can1357.oh-my-pi.yaml index 95788653c17a..f12899c43e65 100644 --- a/manifests/g/GaoyangZhang/EasyClaw/1.7.1/GaoyangZhang.EasyClaw.yaml +++ b/manifests/c/can1357/oh-my-pi/16.5.1/can1357.oh-my-pi.yaml @@ -1,8 +1,8 @@ # Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json -PackageIdentifier: GaoyangZhang.EasyClaw -PackageVersion: 1.7.1 +PackageIdentifier: can1357.oh-my-pi +PackageVersion: 16.5.1 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/c/chuccp/win-sshpass/0.6.2/chuccp.win-sshpass.installer.yaml b/manifests/c/chuccp/win-sshpass/0.6.2/chuccp.win-sshpass.installer.yaml new file mode 100644 index 000000000000..8b89950cc2b2 --- /dev/null +++ b/manifests/c/chuccp/win-sshpass/0.6.2/chuccp.win-sshpass.installer.yaml @@ -0,0 +1,21 @@ +PackageIdentifier: chuccp.win-sshpass +PackageVersion: 0.6.2 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.17763.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: win-sshpass.exe +Scope: machine +Commands: +- win-sshpass +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/chuccp/win-sshpass/releases/download/v0.6.2/win-sshpass-v0.6.2-amd64.zip + InstallerSha256: 4F391B8D4867D923600D49CF6ED0803C80464A3362C664518B33B6B319999F28 +- Architecture: arm64 + InstallerUrl: https://github.com/chuccp/win-sshpass/releases/download/v0.6.2/win-sshpass-v0.6.2-arm64.zip + InstallerSha256: 75FE2A33BBE87EBD3E2B160253DA98A653E5424715522716034D6C29F7D01732 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/c/chuccp/win-sshpass/0.6.2/chuccp.win-sshpass.locale.en-US.yaml b/manifests/c/chuccp/win-sshpass/0.6.2/chuccp.win-sshpass.locale.en-US.yaml new file mode 100644 index 000000000000..37affaaf12d9 --- /dev/null +++ b/manifests/c/chuccp/win-sshpass/0.6.2/chuccp.win-sshpass.locale.en-US.yaml @@ -0,0 +1,22 @@ +PackageIdentifier: chuccp.win-sshpass +PackageVersion: 0.6.2 +PackageLocale: en-US +Publisher: chuccp +PublisherUrl: https://github.com/chuccp +PackageName: win-sshpass +PackageUrl: https://github.com/chuccp/win-sshpass +License: Apache-2.0 +LicenseUrl: https://github.com/chuccp/win-sshpass/blob/main/LICENSE +ShortDescription: Windows SSHpass - SSH with password authentication from the command line +Description: A Windows implementation of sshpass, providing password or private key authentication for SSH, SFTP file transfer, SCP/rsync-style file transfer, interactive shell with raw terminal mode, and config file support. +Tags: + - ssh + - sshpass + - sftp + - scp + - rsync + - cli + - windows +ReleaseNotesUrl: https://github.com/chuccp/win-sshpass/releases/tag/v0.6.2 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/c/chuccp/win-sshpass/0.6.2/chuccp.win-sshpass.yaml b/manifests/c/chuccp/win-sshpass/0.6.2/chuccp.win-sshpass.yaml new file mode 100644 index 000000000000..822419729bca --- /dev/null +++ b/manifests/c/chuccp/win-sshpass/0.6.2/chuccp.win-sshpass.yaml @@ -0,0 +1,5 @@ +PackageIdentifier: chuccp.win-sshpass +PackageVersion: 0.6.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/d/DeskRipple/DeskRipple/0.1.2/DeskRipple.DeskRipple.installer.yaml b/manifests/d/DeskRipple/DeskRipple/0.1.2/DeskRipple.DeskRipple.installer.yaml new file mode 100644 index 000000000000..61b45c509cfe --- /dev/null +++ b/manifests/d/DeskRipple/DeskRipple/0.1.2/DeskRipple.DeskRipple.installer.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: DeskRipple.DeskRipple +PackageVersion: 0.1.2 +InstallerLocale: en-US +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +ReleaseDate: 2026-06-25 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/DeskRipple/deskripple/releases/download/v0.1.2/DeskRipple-beta-Setup.exe + InstallerSha256: 23863E505FF82644BDB28B3761C29A7B435036129CC0AE36F08DC4E58530EA0D +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/DeskRipple/DeskRipple/0.1.2/DeskRipple.DeskRipple.locale.en-US.yaml b/manifests/d/DeskRipple/DeskRipple/0.1.2/DeskRipple.DeskRipple.locale.en-US.yaml new file mode 100644 index 000000000000..776d6d56861d --- /dev/null +++ b/manifests/d/DeskRipple/DeskRipple/0.1.2/DeskRipple.DeskRipple.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: DeskRipple.DeskRipple +PackageVersion: 0.1.2 +PackageLocale: en-US +Publisher: DeskRipple +PublisherUrl: https://deskripple.com/ +PublisherSupportUrl: https://github.com/DeskRipple/deskripple/issues +PrivacyUrl: https://github.com/DeskRipple/deskripple/blob/main/PRIVACY.md +Author: DeskRipple +PackageName: DeskRipple +PackageUrl: https://deskripple.com/ +License: Proprietary +LicenseUrl: https://github.com/DeskRipple/deskripple/blob/main/EULA.md +Copyright: Copyright (c) 2026 DeskRipple +ShortDescription: Expandable desktop folders for Windows 11. +Description: DeskRipple puts folder icons directly on your Windows 11 desktop — they sit behind your windows like native icons and expand into shortcut panels on hover or click, then collapse back to a single icon. Five expand styles (Grid, Fan, Column, Row, Ring), acrylic-blur panels, live desktop-grid snapping, and Per-Monitor V2 DPI awareness. Drag in .lnk shortcuts, .url web links, files, and Microsoft Store apps; DeskRipple keeps its own copy so a dock survives the original being moved or deleted. Dragging a desktop shortcut into a dock safely archives the original (it returns when you remove the entry or uninstall). Switch between named desktop profiles. Free during the public beta; a one-time paid version is planned later. +Moniker: deskripple +Tags: +- desktop +- dock +- folders +- organizer +- productivity +- shortcuts +- windows-11 +ReleaseNotesUrl: https://github.com/DeskRipple/deskripple/releases/tag/v0.1.2 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DeskRipple/DeskRipple/0.1.2/DeskRipple.DeskRipple.yaml b/manifests/d/DeskRipple/DeskRipple/0.1.2/DeskRipple.DeskRipple.yaml new file mode 100644 index 000000000000..626c715e33e9 --- /dev/null +++ b/manifests/d/DeskRipple/DeskRipple/0.1.2/DeskRipple.DeskRipple.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: DeskRipple.DeskRipple +PackageVersion: 0.1.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/Devolutions/UniGetUI/2026.2.3/Devolutions.UniGetUI.installer.yaml b/manifests/d/Devolutions/UniGetUI/2026.2.3/Devolutions.UniGetUI.installer.yaml new file mode 100644 index 000000000000..b0148fb3e1f6 --- /dev/null +++ b/manifests/d/Devolutions/UniGetUI/2026.2.3/Devolutions.UniGetUI.installer.yaml @@ -0,0 +1,47 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Devolutions.UniGetUI +PackageVersion: 2026.2.3 +InstallerType: inno +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{889610CC-4337-4BDB-AC3B-4F21806C0BDE}_is1' +ReleaseDate: 2026-07-14 +AppsAndFeaturesEntries: +- ProductCode: '{889610CC-4337-4BDB-AC3B-4F21806C0BDE}_is1' +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://cdn.devolutions.net/download/Devolutions.UniGetUI.win-x64.2026.2.3.0.exe + InstallerSha256: D82581E538C96FB0D1AAB3A3C36BD3B44D10C1DF1357EBD4F18F37454B748DEE + InstallerSwitches: + Custom: /CURRENTUSER /NoWinGet /NoAutoStart +- Architecture: x64 + Scope: machine + InstallerUrl: https://cdn.devolutions.net/download/Devolutions.UniGetUI.win-x64.2026.2.3.0.exe + InstallerSha256: D82581E538C96FB0D1AAB3A3C36BD3B44D10C1DF1357EBD4F18F37454B748DEE + InstallerSwitches: + Custom: /ALLUSERS /NoWinGet /NoAutoStart + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\UniGetUI' +- Architecture: arm64 + Scope: user + InstallerUrl: https://cdn.devolutions.net/download/Devolutions.UniGetUI.win-arm64.2026.2.3.0.exe + InstallerSha256: 4CDE5D7AB842E294389998AA11FBFB440FC63CB1B509A6E4B97D35728D467157 + InstallerSwitches: + Custom: /CURRENTUSER /NoWinGet /NoAutoStart +- Architecture: arm64 + Scope: machine + InstallerUrl: https://cdn.devolutions.net/download/Devolutions.UniGetUI.win-arm64.2026.2.3.0.exe + InstallerSha256: 4CDE5D7AB842E294389998AA11FBFB440FC63CB1B509A6E4B97D35728D467157 + InstallerSwitches: + Custom: /ALLUSERS /NoWinGet /NoAutoStart + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\UniGetUI' +ManifestType: installer +ManifestVersion: 1.12.0 + diff --git a/manifests/d/Devolutions/UniGetUI/2026.2.3/Devolutions.UniGetUI.locale.en-US.yaml b/manifests/d/Devolutions/UniGetUI/2026.2.3/Devolutions.UniGetUI.locale.en-US.yaml new file mode 100644 index 000000000000..182682387eb6 --- /dev/null +++ b/manifests/d/Devolutions/UniGetUI/2026.2.3/Devolutions.UniGetUI.locale.en-US.yaml @@ -0,0 +1,32 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Devolutions.UniGetUI +PackageVersion: 2026.2.3 +PackageLocale: en-US +Publisher: Devolutions Inc. +PublisherUrl: https://devolutions.net/ +PublisherSupportUrl: https://devolutions.net/support/ +PackageName: UniGetUI +PackageUrl: https://devolutions.net/unigetui/ +License: MIT +LicenseUrl: https://github.com/Devolutions/UniGetUI/blob/HEAD/LICENSE +ShortDescription: The Graphical Interface for your package managers. +Description: UniGetUI is an intuitive GUI for the most common CLI package managers on Windows, including WinGet, Scoop, Chocolatey, Pip, Npm, .NET Tool, PowerShell Gallery, and more. With UniGetUI, you can discover, install, update, and uninstall software from multiple package managers through one interface. +Moniker: unigetui +Tags: +- chocolatey +- dotnet-tool +- microsoft-store +- npm +- pip +- powershell-gallery +- scoop +- uniget-ui +- winget +- winget-ui +- wingetui +Copyright: Copyright (c) 2026 Devolutions Inc. +ReleaseNotesUrl: https://github.com/Devolutions/UniGetUI/releases/tag/v2026.2.3 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 + diff --git a/manifests/d/Devolutions/UniGetUI/2026.2.3/Devolutions.UniGetUI.yaml b/manifests/d/Devolutions/UniGetUI/2026.2.3/Devolutions.UniGetUI.yaml new file mode 100644 index 000000000000..e1e5114250b9 --- /dev/null +++ b/manifests/d/Devolutions/UniGetUI/2026.2.3/Devolutions.UniGetUI.yaml @@ -0,0 +1,8 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Devolutions.UniGetUI +PackageVersion: 2026.2.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 + diff --git a/manifests/d/DigiDNA/iMazingProfileEditor/2.0.4.0/DigiDNA.iMazingProfileEditor.installer.yaml b/manifests/d/DigiDNA/iMazingProfileEditor/2.0.4.0/DigiDNA.iMazingProfileEditor.installer.yaml new file mode 100644 index 000000000000..7e3d85ab96bc --- /dev/null +++ b/manifests/d/DigiDNA/iMazingProfileEditor/2.0.4.0/DigiDNA.iMazingProfileEditor.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: DigiDNA.iMazingProfileEditor +PackageVersion: 2.0.4.0 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- mobileconfig +ProductCode: '{75D09EE4-516E-418F-8F16-71C9666D2E3E}_is1' +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://downloads.imazing.com/windows/iMazing-Profile-Editor/2.0.4/iMazing_Profile_Editor_2.0.4.exe + InstallerSha256: 1BD94AD14D40321761A2C6415C6BC716FE975117C845DD24E1A81787FE1BB6A9 +- Architecture: x64 + InstallerUrl: https://downloads.imazing.com/windows/iMazing-Profile-Editor/2.0.4/iMazing_Profile_Editor_2.0.4.exe + InstallerSha256: 1BD94AD14D40321761A2C6415C6BC716FE975117C845DD24E1A81787FE1BB6A9 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/DigiDNA/iMazingProfileEditor/2.0.4.0/DigiDNA.iMazingProfileEditor.locale.en-US.yaml b/manifests/d/DigiDNA/iMazingProfileEditor/2.0.4.0/DigiDNA.iMazingProfileEditor.locale.en-US.yaml new file mode 100644 index 000000000000..e2e9021e512e --- /dev/null +++ b/manifests/d/DigiDNA/iMazingProfileEditor/2.0.4.0/DigiDNA.iMazingProfileEditor.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: DigiDNA.iMazingProfileEditor +PackageVersion: 2.0.4.0 +PackageLocale: en-US +Publisher: DigiDNA +PublisherUrl: https://digidna.ch/ +PublisherSupportUrl: https://support.imazing.com/ +PrivacyUrl: https://imazing.com/privacy-policy +Author: DigiDNA SARL +PackageName: iMazing Profile Editor +PackageUrl: https://imazing.com/profile-editor +License: Freeware +LicenseUrl: https://imazing.com/uploads/iMazing-EULA.pdf +Copyright: Copyright © DigiDNA SARL, 2008-2026. All rights reserved. +ShortDescription: Create, Edit, and Sign Apple Configuration Profiles +Description: iMazing Profile Editor is a free app to easily define settings for deployment on Apple devices. +Tags: +- apple +- configuration +- configuration-profile +- configurator +- deploy +- deployment +- ios +- ipad +- iphone +- ipod +- mobileconfig +- profile +ReleaseNotes: |- + Fixes in 2.0.4 + - Fixed an issue that led to an app crash when working with files on external drives +ReleaseNotesUrl: https://downloads.imazing.com/windows/iMazing-Profile-Editor/2.0.4/release-notes.html +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DigiDNA/iMazingProfileEditor/2.0.4.0/DigiDNA.iMazingProfileEditor.locale.zh-CN.yaml b/manifests/d/DigiDNA/iMazingProfileEditor/2.0.4.0/DigiDNA.iMazingProfileEditor.locale.zh-CN.yaml new file mode 100644 index 000000000000..d55edb4e4631 --- /dev/null +++ b/manifests/d/DigiDNA/iMazingProfileEditor/2.0.4.0/DigiDNA.iMazingProfileEditor.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: DigiDNA.iMazingProfileEditor +PackageVersion: 2.0.4.0 +PackageLocale: zh-CN +Publisher: DigiDNA +PublisherUrl: https://digidna.ch/ +PublisherSupportUrl: https://support.imazing.com/ +PrivacyUrl: https://imazing.com/privacy-policy +Author: DigiDNA SARL +PackageName: iMazing Profile Editor +PackageUrl: https://imazing.com/zh/profile-editor +License: 免费软件 +LicenseUrl: https://imazing.com/uploads/iMazing-EULA.pdf +Copyright: Copyright © DigiDNA SARL, 2008-2026. All rights reserved. +ShortDescription: 创建、编辑和签署 Apple 配置描述文件 +Description: iMazing Profile Editor 是一款免费应用,可轻松定义 Apple 设备上的部署设置。 +Tags: +- ios +- ipad +- iphone +- ipod +- mobileconfig +- 描述文件 +- 苹果 +- 部署 +- 配置 +ReleaseNotesUrl: https://downloads.imazing.com/windows/iMazing-Profile-Editor/2.0.4/release-notes.html +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DigiDNA/iMazingProfileEditor/2.0.4.0/DigiDNA.iMazingProfileEditor.yaml b/manifests/d/DigiDNA/iMazingProfileEditor/2.0.4.0/DigiDNA.iMazingProfileEditor.yaml new file mode 100644 index 000000000000..f2d41c3bf3a2 --- /dev/null +++ b/manifests/d/DigiDNA/iMazingProfileEditor/2.0.4.0/DigiDNA.iMazingProfileEditor.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: DigiDNA.iMazingProfileEditor +PackageVersion: 2.0.4.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/DiskInternals/LinuxReader/5.1/DiskInternals.LinuxReader.installer.yaml b/manifests/d/DiskInternals/LinuxReader/5.1/DiskInternals.LinuxReader.installer.yaml new file mode 100644 index 000000000000..70917fe47406 --- /dev/null +++ b/manifests/d/DiskInternals/LinuxReader/5.1/DiskInternals.LinuxReader.installer.yaml @@ -0,0 +1,34 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: DiskInternals.LinuxReader +PackageVersion: '5.1' +InstallerLocale: en-US +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +UpgradeBehavior: install +FileExtensions: +- e01 +- e02 +- eve +- hds +- vdi +- vhd +- vhdx +- vmdk +ProductCode: DiskInternals Linux Reader +ReleaseDate: 2026-07-10 +AppsAndFeaturesEntries: +- Publisher: DiskInternals + ProductCode: DiskInternals Linux Reader +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\DiskInternals\LinuxReader' +Installers: +- Architecture: x86 + InstallerUrl: https://eu.diskinternals.com/download/Linux_Reader.exe + InstallerSha256: 9FD51FDA237B4E1D5030C335B832CDD721E61321748F305CB0B5694FC122F175 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/DiskInternals/LinuxReader/5.1/DiskInternals.LinuxReader.locale.en-US.yaml b/manifests/d/DiskInternals/LinuxReader/5.1/DiskInternals.LinuxReader.locale.en-US.yaml new file mode 100644 index 000000000000..00f5969c5e4b --- /dev/null +++ b/manifests/d/DiskInternals/LinuxReader/5.1/DiskInternals.LinuxReader.locale.en-US.yaml @@ -0,0 +1,59 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: DiskInternals.LinuxReader +PackageVersion: '5.1' +PackageLocale: en-US +Publisher: DiskInternals Research +PublisherUrl: https://www.diskinternals.com/ +PublisherSupportUrl: https://www.diskinternals.com/support/ +PrivacyUrl: https://www.diskinternals.com/privacy/ +Author: DiskInternals, Ltd. +PackageName: DiskInternals Linux Reader +PackageUrl: https://www.diskinternals.com/linux-reader/ +License: Freemium +Copyright: Copyright @ 2003-2025, DiskInternals +ShortDescription: Access files and folders on Ext, UFS, HFS, ReiserFS, or APFS file systems from Windows +Description: |- + Linux Reader™ is a popular and free software product, and it remains non-commercial freeware. Since version 4.0, there are extra features that are available as Linux Reader Pro™. + + With Linux Reader Pro™, you can read files from even more file systems, get remote access through an SSH connection, create a virtual drive, export files via FTP, and more. + + All significant features of Linux Reader™ remain free: no annoying advertising, no trial mode, no restrictions. + + Linux Reader™ and Linux Reader Pro™ provide you with access to files on the following file systems: + - Ext2/3/4 + - ReiserFS, Reiser4 + - HFS, HFS+(reader) + - FAT, exFAT + - NTFS, ReFS + - UFS2 + - RomFS(reader) + - RAID 0, 1, 4, 5, 50, 10, and JBOD + - APFS (reader mode) + - ZFS (preview only*) + - XFS (preview only*) + - Hikvision NAS and DVR (preview only*) + * Linux Reader Pro™ license is required to obtain full access to files. + + In addition to the file systems mentioned above, Linux Reader Pro™ provides full access to these additional file systems: ZFS, Encrypted APFS, XFS, Hikvision NAS and DVR, Encrypted BitLocker disks, Moniker: linuxreader +Tags: +- apfs +- bitlocker +- ext2 +- ext3 +- ext4 +- fat +- filesystems +- hfs +- linux +- raid +- refs +- reiserfs +- romfs +- ufs2 +- xfs +- zfs +PurchaseUrl: https://store.payproglobal.com/checkout?products%5B1%5D%5Bid%5D=56003&addons=46183 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DiskInternals/LinuxReader/5.1/DiskInternals.LinuxReader.yaml b/manifests/d/DiskInternals/LinuxReader/5.1/DiskInternals.LinuxReader.yaml new file mode 100644 index 000000000000..895dc7743552 --- /dev/null +++ b/manifests/d/DiskInternals/LinuxReader/5.1/DiskInternals.LinuxReader.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: DiskInternals.LinuxReader +PackageVersion: '5.1' +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/Dyad/Dyad/1.7.0/Dyad.Dyad.installer.yaml b/manifests/d/Dyad/Dyad/1.7.0/Dyad.Dyad.installer.yaml new file mode 100644 index 000000000000..95bbf1161764 --- /dev/null +++ b/manifests/d/Dyad/Dyad/1.7.0/Dyad.Dyad.installer.yaml @@ -0,0 +1,28 @@ +# Created with WinGet Updater using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Dyad.Dyad +PackageVersion: 1.7.0 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +ProductCode: dyad +ReleaseDate: 2026-07-13 +AppsAndFeaturesEntries: +- DisplayName: dyad + ProductCode: dyad +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\dyad' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/dyad-sh/dyad/releases/download/v1.7.0/dyad-1.7.0.Setup.exe + InstallerSha256: 9A6B475F5780F753AE5612DB0B3F962E65D3D3F34462B4DE600A1BBA0F1A9101 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/Dyad/Dyad/1.7.0/Dyad.Dyad.locale.en-US.yaml b/manifests/d/Dyad/Dyad/1.7.0/Dyad.Dyad.locale.en-US.yaml new file mode 100644 index 000000000000..dc2d0fdf6e9b --- /dev/null +++ b/manifests/d/Dyad/Dyad/1.7.0/Dyad.Dyad.locale.en-US.yaml @@ -0,0 +1,67 @@ +# Created with WinGet Updater using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Dyad.Dyad +PackageVersion: 1.7.0 +PackageLocale: en-US +Publisher: Will Chen +PublisherUrl: https://www.dyad.sh/ +PublisherSupportUrl: https://github.com/dyad-sh/dyad/issues +Author: Dyad +PackageName: Dyad +PackageUrl: https://www.dyad.sh/ +License: Apache-2.0 +LicenseUrl: https://github.com/dyad-sh/dyad/blob/HEAD/LICENSE +Copyright: Copyright © 2025 Will Chen +ShortDescription: Dyad is a free, local, open-source AI app builder +Description: Dyad is a free, local, open-source AI app builder +Moniker: dyad +Tags: +- ai-app-builder +- anthropic +- artificial-intelligence +- bolt +- deepseek +- gemini +- generative-ai +- github +- llm +- llms +- lovable +- nextjs +- ollama +- openai +- qwen +- v0 +ReleaseNotes: |- + Full release notes: https://www.dyad.sh/docs/releases/1.7.0 + What's Changed + - improve bump version script by @wwwillchen in #3853 + - Fix safeStorage E2E keychain account names by @wwwillchen in #3856 + - Add AI-generated E2E testing feature by @azizmejri1 in #3681 + - Add process-level memory diagnostics to session debug export by @keppo-bot[bot] in #3860 + - Fix PreviewPanel Jotai test mock by @keppo-bot[bot] in #3865 + - Run TSC worker in a utilityProcess instead of a worker thread by @keppo-bot[bot] in #3861 + - Consolidate code explorer sessions into one byte-budgeted utility process by @keppo-bot[bot] in #3862 + - Skip renderer problems auto-refresh for local-agent turns by @keppo-bot[bot] in #3864 + - Add OpenRouter app attribution by @wwwillchen in #3867 + - Add electron-workers rule: shared V8 cage, utilityProcess checklist, memory measurement by @keppo-bot[bot] in #3868 + - Improve local agent file listing performance by @wwwillchen in #3888 + - fix: bound chat attachment memory usage by @wwwillchen in #3872 + - Bound voice-to-text recording memory by @wwwillchen in #3879 + - Bound preview console memory usage by @wwwillchen in #3875 + - Bound child-process output memory and timeouts by @wwwillchen in #3876 + - Reduce Supabase function bundle concurrency by @wwwillchen in #3891 + - Prevent OOMs from large file reads by @wwwillchen in #3884 + - Keep aiMessagesJson out of renderer IPC by @wwwillchen in #3889 + - Stream upgrade backup checksums by @wwwillchen in #3890 + - Fix Node.js external dependency detection by @wwwillchen in #3892 + - Bump to v1.7.0-beta.1 by @wwwillchen in #3893 + - Prevent duplicate MCP clients and clean up transports by @wwwillchen in #3883 + - Serialize TypeScript utility processes by @wwwillchen in #3895 + - Restore MCP transport E2E coverage by @wwwillchen in #3898 + - Bump to v1.7.0 by @wwwillchen in #3917 + Full Changelog: v1.6.2...v1.7.0 +ReleaseNotesUrl: https://github.com/dyad-sh/dyad/releases/tag/v1.7.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Dyad/Dyad/1.7.0/Dyad.Dyad.yaml b/manifests/d/Dyad/Dyad/1.7.0/Dyad.Dyad.yaml new file mode 100644 index 000000000000..3e049c41b4d9 --- /dev/null +++ b/manifests/d/Dyad/Dyad/1.7.0/Dyad.Dyad.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Updater using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Dyad.Dyad +PackageVersion: 1.7.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/drkbugs/rusticker/1.1.5/drkbugs.rusticker.installer.yaml b/manifests/d/drkbugs/rusticker/1.1.5/drkbugs.rusticker.installer.yaml new file mode 100644 index 000000000000..fb421ffb792e --- /dev/null +++ b/manifests/d/drkbugs/rusticker/1.1.5/drkbugs.rusticker.installer.yaml @@ -0,0 +1,20 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json +PackageIdentifier: drkbugs.rusticker +PackageVersion: 1.1.5 +MinimumOSVersion: 10.0.0.0 +InstallerType: zip +NestedInstallerType: portable +Commands: + - rusticker + - stickerize +Installers: + - Architecture: x64 + InstallerUrl: https://github.com/drkblog/rusticker/releases/download/v1.1.5/rusticker-v1.1.5-windows-x64.zip + InstallerSha256: de1c1a385d4072645f3ee562a4ff117d9022e37a32c1de279234d936590cfd11 + NestedInstallerFiles: + - RelativeFilePath: rusticker.exe + PortableCommandAlias: rusticker + - RelativeFilePath: stickerize.exe + PortableCommandAlias: stickerize +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/drkbugs/rusticker/1.1.5/drkbugs.rusticker.locale.en-US.yaml b/manifests/d/drkbugs/rusticker/1.1.5/drkbugs.rusticker.locale.en-US.yaml new file mode 100644 index 000000000000..bd8fd936e6d3 --- /dev/null +++ b/manifests/d/drkbugs/rusticker/1.1.5/drkbugs.rusticker.locale.en-US.yaml @@ -0,0 +1,26 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json +PackageIdentifier: drkbugs.rusticker +PackageVersion: 1.1.5 +PackageLocale: en-US +Publisher: drkbugs +PublisherUrl: https://github.com/drkblog +PublisherSupportUrl: https://github.com/drkblog/rusticker/issues +Author: drkbugs +PackageName: rusticker +PackageUrl: https://github.com/drkblog/rusticker +License: MIT +LicenseUrl: https://github.com/drkblog/rusticker/blob/main/LICENSE +Copyright: Copyright (c) 2026 drkbugs +ShortDescription: A command-line tool for generating A4 grid layouts of stickers in PDF format and removing background from images. +Description: rusticker is a high-precision CLI layout tool for generating sticker sheets. It prints transparent raster images with custom contour outlines for easy die-cutting. +Moniker: rusticker +Tags: + - sticker + - pdf + - layout + - CLI + - print + - background-remover + - birefnet +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/drkbugs/rusticker/1.1.5/drkbugs.rusticker.yaml b/manifests/d/drkbugs/rusticker/1.1.5/drkbugs.rusticker.yaml new file mode 100644 index 000000000000..1190f982edbc --- /dev/null +++ b/manifests/d/drkbugs/rusticker/1.1.5/drkbugs.rusticker.yaml @@ -0,0 +1,6 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json +PackageIdentifier: drkbugs.rusticker +PackageVersion: 1.1.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/e/EarendilWorks/pi/0.80.7/EarendilWorks.pi.installer.yaml b/manifests/e/EarendilWorks/pi/0.80.7/EarendilWorks.pi.installer.yaml new file mode 100644 index 000000000000..40d58f2b360a --- /dev/null +++ b/manifests/e/EarendilWorks/pi/0.80.7/EarendilWorks.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: EarendilWorks.pi +PackageVersion: 0.80.7 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: pi.exe +Commands: +- pi +ReleaseDate: 2026-07-14 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/earendil-works/pi/releases/download/v0.80.7/pi-windows-x64.zip + InstallerSha256: 38AFE9451D4BC8B2465D6123A452ABB4713EB0B28C70E7917FC7060A8908A3DD +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/e/EarendilWorks/pi/0.80.7/EarendilWorks.pi.locale.en-US.yaml b/manifests/e/EarendilWorks/pi/0.80.7/EarendilWorks.pi.locale.en-US.yaml new file mode 100644 index 000000000000..c8e53789b86f --- /dev/null +++ b/manifests/e/EarendilWorks/pi/0.80.7/EarendilWorks.pi.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: EarendilWorks.pi +PackageVersion: 0.80.7 +PackageLocale: en-US +Publisher: EARENDIL INC. +PublisherUrl: https://github.com/earendil-works +PublisherSupportUrl: https://github.com/earendil-works/pi/issues +Author: Mario Zechner +PackageName: pi +PackageUrl: https://github.com/earendil-works/pi +License: MIT +LicenseUrl: https://github.com/earendil-works/pi/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: |- + Breaking Changes + - Removed the openai-responses compat.sendSessionIdHeader flag from models.json. Session-affinity behavior is now controlled by compat.sessionAffinityFormat ("openai", "openai-nosession", or "openrouter"). Replace sendSessionIdHeader: false with sessionAffinityFormat: "openai-nosession" (#6496 by @petrroll). + New Features + - Cache-friendly dynamic tool loading - Extensions can add tools during execution while supported Anthropic and OpenAI Responses models preserve prompt-cache prefixes. See Dynamic Tool Loading. + - Message copy shortcut - Ctrl+X copies the last assistant message in the transcript or the selected message in /tree, making older and branched messages directly copyable. See Display and Message Queue. + - Fable 5 xhigh and max thinking - Native xhigh and max thinking levels are available across generated provider catalogs. See Model Options. + Added + - Added cache-friendly dynamic tool loading for extension tools activated by tool results. Supported Anthropic and OpenAI Responses models load definitions where they become available, preserving the cached prompt prefix. See Dynamic Tool Loading (#6474). + - Added inherited native xhigh and max thinking levels for Claude Fable 5 across all generated provider catalogs (#6490 by @davidbrai). + - Added Ctrl+X to copy the last assistant message, or the selected message in /tree. + - Added inherited toolChoice support for OpenAI and Codex Responses, including required and named tool selection (#6588 by @xl0). + Fixed + - Fixed inherited OpenRouter model context windows to use the top provider's actual context length (#6481 by @davidbrai). + - Fixed inherited OpenRouter OpenAI-compatible session IDs to use the x-session-id header instead of OpenAI-specific session-affinity fields (#6496 by @petrroll). + - Fixed Ctrl+V to paste clipboard text when the pasteboard does not contain an image. + - Fixed /login amazon-bedrock to prompt for and save a Bedrock API key instead of only displaying ambient AWS credential setup instructions. + - Fixed inherited Amazon Bedrock ambient AWS credentials to keep using SigV4 authentication, including for custom model IDs (#6532 by @ribelo). + - Fixed inherited Cloudflare Workers AI and AI Gateway authentication to use ambient account and gateway IDs when stored credentials contain only an API key (#6292 by @markphelps). + - Fixed inherited legacy terminal decoding for Alt+symbol key combinations such as Alt+, and Alt+. (#6523 by @ribelo). + - Fixed the GitHub Copilot mai-code-1-flash-picker model to route through the /responses endpoint (#6544 by @petrroll). + - Fixed branch summaries to work with providers that use ambient authentication instead of API keys (#6595 by @davidbrai). + - Fixed inherited Amazon Bedrock errors to report unhandled provider stop reasons instead of only An unknown error occurred (#6598 by @davidbrai). + - Fixed npm package removal when installed packages have conflicting peer dependencies (#6604 by @davidbrai). + - Fixed inherited Azure OpenAI Responses reasoning replay when encrypted_content appears only in the terminal response event (#6608 by @davidbrai). + - Fixed inherited Anthropic-compatible proxies that omit usage from message_delta events (#6611 by @davidbrai). + - Fixed inherited OpenCode OpenAI Responses models to omit the unsupported session-id header while preserving other cache-affinity data (#6645 by @davidbrai). + - Fixed system prompt cache invalidation across dates by removing the current date from the default prompt (#6621). +ReleaseNotesUrl: https://github.com/earendil-works/pi/releases/tag/v0.80.7 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/e/EarendilWorks/pi/0.80.7/EarendilWorks.pi.locale.zh-CN.yaml b/manifests/e/EarendilWorks/pi/0.80.7/EarendilWorks.pi.locale.zh-CN.yaml new file mode 100644 index 000000000000..e792b3860a36 --- /dev/null +++ b/manifests/e/EarendilWorks/pi/0.80.7/EarendilWorks.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: EarendilWorks.pi +PackageVersion: 0.80.7 +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/e/EarendilWorks/pi/0.80.7/EarendilWorks.pi.yaml b/manifests/e/EarendilWorks/pi/0.80.7/EarendilWorks.pi.yaml new file mode 100644 index 000000000000..e80d4c8f1468 --- /dev/null +++ b/manifests/e/EarendilWorks/pi/0.80.7/EarendilWorks.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: EarendilWorks.pi +PackageVersion: 0.80.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/e/eduVPN/Client/4.6/eduVPN.Client.installer.yaml b/manifests/e/eduVPN/Client/4.6/eduVPN.Client.installer.yaml index 4bb92fce8b8e..deecf21cbfce 100644 --- a/manifests/e/eduVPN/Client/4.6/eduVPN.Client.installer.yaml +++ b/manifests/e/eduVPN/Client/4.6/eduVPN.Client.installer.yaml @@ -6,7 +6,7 @@ PackageVersion: 4.6 Installers: - Architecture: arm64 InstallerType: wix - InstallerUrl: https://codeberg.org/eduVPN/windows/releases/download/4.6/eduVPNClient_4.6_ARM64.msi + InstallerUrl: https://app.eduvpn.org/windows/eduVPNClient_4.6_ARM64.msi InstallerSha256: f546d9e69660d7cb4f83c2179e17bae5c0d59a1b827636e91850bfed532d5c82 AppsAndFeaturesEntries: - ProductCode: '{5F0A9747-2CD2-4E1C-9E20-E426DBF988A8}' @@ -14,7 +14,7 @@ Installers: UpgradeCode: '{02EBD828-2565-4BCD-ABFF-E3F48C3F9A23}' - Architecture: x64 InstallerType: wix - InstallerUrl: https://codeberg.org/eduVPN/windows/releases/download/4.6/eduVPNClient_4.6_x64.msi + InstallerUrl: https://app.eduvpn.org/windows/eduVPNClient_4.6_x64.msi InstallerSha256: 3035ffa94283dfeab00227041099436c41b6354d524e01831003d0697101ffb4 AppsAndFeaturesEntries: - ProductCode: '{5F0A9747-2CD2-4E1C-9E10-E426DBF988A8}' @@ -22,7 +22,7 @@ Installers: UpgradeCode: '{02EBD828-2565-4BCD-ABFF-E3F48C3F9A23}' - Architecture: x86 InstallerType: wix - InstallerUrl: https://codeberg.org/eduVPN/windows/releases/download/4.6/eduVPNClient_4.6_x86.msi + InstallerUrl: https://app.eduvpn.org/windows/eduVPNClient_4.6_x86.msi InstallerSha256: f340f65919d019c977f0ffd7e6be287a2e2b069d3599ff01b1492da7e9fd8575 AppsAndFeaturesEntries: - ProductCode: '{5F0A9747-2CD2-4E1C-9E00-E426DBF988A8}' diff --git a/manifests/f/FireBlade/ClipboardEdit/v1.0/FireBlade.ClipboardEdit.installer.yaml b/manifests/f/FireBlade/ClipboardEdit/v1.0/FireBlade.ClipboardEdit.installer.yaml new file mode 100644 index 000000000000..231489406fa2 --- /dev/null +++ b/manifests/f/FireBlade/ClipboardEdit/v1.0/FireBlade.ClipboardEdit.installer.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: FireBlade.ClipboardEdit +PackageVersion: "v1.0" +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: ClipboardEdit.exe +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: neutral + InstallerUrl: https://github.com/FireBlade211/ClipboardEdit/releases/download/v1.0/ClipboardEdit.zip + InstallerSha256: 8DE0468ACDF666AA336C287FC39D2DB76E2C2DA31EF8EF47F7CC434CB6724DB8 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/f/FireBlade/ClipboardEdit/v1.0/FireBlade.ClipboardEdit.locale.en-US.yaml b/manifests/f/FireBlade/ClipboardEdit/v1.0/FireBlade.ClipboardEdit.locale.en-US.yaml new file mode 100644 index 000000000000..df9ac81345a8 --- /dev/null +++ b/manifests/f/FireBlade/ClipboardEdit/v1.0/FireBlade.ClipboardEdit.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: FireBlade.ClipboardEdit +PackageVersion: "v1.0" +PackageLocale: en-US +Publisher: FireBlade +PackageName: ClipboardEdit +License: MIT License +ShortDescription: A utility that allows you to view and edit the Windows clipboard. +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IObit/MalwareFighter/13.3.0.1652/IObit.MalwareFighter.yaml b/manifests/f/FireBlade/ClipboardEdit/v1.0/FireBlade.ClipboardEdit.yaml similarity index 72% rename from manifests/i/IObit/MalwareFighter/13.3.0.1652/IObit.MalwareFighter.yaml rename to manifests/f/FireBlade/ClipboardEdit/v1.0/FireBlade.ClipboardEdit.yaml index 5cb501cfec5e..46aa8eaae76c 100644 --- a/manifests/i/IObit/MalwareFighter/13.3.0.1652/IObit.MalwareFighter.yaml +++ b/manifests/f/FireBlade/ClipboardEdit/v1.0/FireBlade.ClipboardEdit.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: IObit.MalwareFighter -PackageVersion: 13.3.0.1652 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: FireBlade.ClipboardEdit +PackageVersion: "v1.0" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/f/Flint/Fip-C/0.3.2/Flint.Fip-C.installer.yaml b/manifests/f/Flint/Fip-C/0.3.2/Flint.Fip-C.installer.yaml new file mode 100644 index 000000000000..f190073866cf --- /dev/null +++ b/manifests/f/Flint/Fip-C/0.3.2/Flint.Fip-C.installer.yaml @@ -0,0 +1,15 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Flint.Fip-C +PackageVersion: 0.3.2 +InstallerLocale: en-US +InstallerType: portable +Commands: +- fip-c +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/flint-lang/fip/releases/download/v0.3.2/fip-c.exe + InstallerSha256: f80ad34799dca4f57e1da3198f3a287caa78390a25a87478a384509313bcc4ee +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/f/Flint/Fip-C/0.3.2/Flint.Fip-C.locale.en-US.yaml b/manifests/f/Flint/Fip-C/0.3.2/Flint.Fip-C.locale.en-US.yaml new file mode 100644 index 000000000000..485ee1f92254 --- /dev/null +++ b/manifests/f/Flint/Fip-C/0.3.2/Flint.Fip-C.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: Flint.Fip-C +PackageVersion: 0.3.2 +PackageLocale: en-US +Publisher: Flint Organisation +PublisherUrl: https://github.com/fip +PublisherSupportUrl: https://github.com/flint-lang/fip/issues +PackageName: fip-c +PackageUrl: https://flint-lang.github.io/ +License: MIT +LicenseUrl: https://github.com/flint-lang/fip/blob/main/LICENSE +Copyright: Copyright (c) 2024 Flint Organisation +ShortDescription: C Interop Module utilizing the Flint Interop Protocol +Description: C Interop Module utilizing the Flint Interop Protocol +Moniker: fip-c +Tags: +- flint +- fip +- interop-module +ReleaseNotesUrl: https://github.com/flint-lang/fip/releases/tag/v0.3.2 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/f/Flint/Fip-C/0.3.2/Flint.Fip-C.yaml b/manifests/f/Flint/Fip-C/0.3.2/Flint.Fip-C.yaml new file mode 100644 index 000000000000..861d0573dd9b --- /dev/null +++ b/manifests/f/Flint/Fip-C/0.3.2/Flint.Fip-C.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: Flint.Fip-C +PackageVersion: 0.3.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/g/GaoyangZhang/EasyClaw/1.7.1/GaoyangZhang.EasyClaw.installer.yaml b/manifests/g/GaoyangZhang/EasyClaw/1.7.1/GaoyangZhang.EasyClaw.installer.yaml deleted file mode 100644 index 9b57cd50d352..000000000000 --- a/manifests/g/GaoyangZhang/EasyClaw/1.7.1/GaoyangZhang.EasyClaw.installer.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: GaoyangZhang.EasyClaw -PackageVersion: 1.7.1 -InstallerType: nullsoft -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ProductCode: 51492edb-6d67-582c-a781-6b48bbf5f3bf -ReleaseDate: 2026-03-18 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/gaoyangz77/rivonclaw/releases/download/v1.7.1/RivonClaw.Setup.1.7.1.exe - InstallerSha256: F045924A5223560FE1C3AAE27EDB56DBC62E44E223B3657832F2D5D15408EDE2 - InstallerSwitches: - Custom: /currentuser -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/gaoyangz77/rivonclaw/releases/download/v1.7.1/RivonClaw.Setup.1.7.1.exe - InstallerSha256: F045924A5223560FE1C3AAE27EDB56DBC62E44E223B3657832F2D5D15408EDE2 - InstallerSwitches: - Custom: /allusers -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/g/GaoyangZhang/EasyClaw/1.7.1/GaoyangZhang.EasyClaw.locale.en-US.yaml b/manifests/g/GaoyangZhang/EasyClaw/1.7.1/GaoyangZhang.EasyClaw.locale.en-US.yaml deleted file mode 100644 index cc9fe3e4c9ec..000000000000 --- a/manifests/g/GaoyangZhang/EasyClaw/1.7.1/GaoyangZhang.EasyClaw.locale.en-US.yaml +++ /dev/null @@ -1,54 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: GaoyangZhang.EasyClaw -PackageVersion: 1.7.1 -PackageLocale: en-US -Publisher: EasyClaw -PublisherUrl: https://github.com/gaoyangz77 -PublisherSupportUrl: https://github.com/gaoyangz77/easyclaw/issues -Author: Gaoyang Zhang -PackageName: EasyClaw -PackageUrl: https://github.com/gaoyangz77/easyclaw -License: MIT -LicenseUrl: https://github.com/gaoyangz77/easyclaw/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. - EasyClaw 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; EasyClaw 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 - EasyClaw 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 EasyClaw 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.1 -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/g/GaoyangZhang/EasyClaw/1.7.1/GaoyangZhang.EasyClaw.locale.zh-CN.yaml b/manifests/g/GaoyangZhang/EasyClaw/1.7.1/GaoyangZhang.EasyClaw.locale.zh-CN.yaml deleted file mode 100644 index 6e45ac42a977..000000000000 --- a/manifests/g/GaoyangZhang/EasyClaw/1.7.1/GaoyangZhang.EasyClaw.locale.zh-CN.yaml +++ /dev/null @@ -1,43 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: GaoyangZhang.EasyClaw -PackageVersion: 1.7.1 -PackageLocale: zh-CN -ShortDescription: 基于 OpenClaw 构建的简易模式运行时与 UI 层,旨在将长生命周期 AI 智能体转化为个人数字管家。 -Description: |- - OpenClaw 是一款功能强大的智能体运行时,但它专为工程师打造:配置需编辑配置文件、管理进程,并在终端中调度各类 API 密钥。对非程序员(如设计师、运营人员、小企业主)而言,这一门槛过高。 - EasyClaw 将 OpenClaw 封装为桌面应用,人人可用:安装后从系统托盘启动,通过本地 Web 面板管理一切。用自然语言编写规则而非代码,只需几次点击即可配置大语言模型(LLM)提供商与消息渠道,并让智能体随时间学习您的偏好。无需终端。 - 简言之:OpenClaw 是引擎,EasyClaw 是驾驶舱。 - - 功能特性 - - 自然语言规则:用通俗语言编写规则,自动编译为策略、防护器或技能,即时生效(无需重启) - - 多提供商 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) - - 文件权限工作原理 - EasyClaw 通过一个 OpenClaw 插件强制执行文件访问权限,该插件在工具调用执行前进行拦截。受保护内容包括: - - 文件访问工具(读取、写入、编辑、图像处理、应用补丁):全面保护——路径将对照您配置的权限进行验证 - - 命令执行(exec、process):工作目录会被验证,但命令字符串内部的路径(例如 cat /etc/passwd)无法被检查 - 覆盖范围:约 85–90% 的文件访问场景。为实现最高安全性,建议通过规则限制或禁用 exec 工具。 - 技术说明:文件权限插件利用 OpenClaw 的 before_tool_call 钩子实现,无需修改厂商源代码,因此 EasyClaw 可干净地拉取上游 OpenClaw 更新。 -Tags: -- 人工智能 -- 大语言模型 -- 智能体 -- 聊天机器人 -- 自主智能 -- 龙虾 -ManifestType: locale -ManifestVersion: 1.12.0 diff --git a/manifests/g/GitHub/Copilot/Prerelease/v1.0.71-1/GitHub.Copilot.Prerelease.installer.yaml b/manifests/g/GitHub/Copilot/Prerelease/v1.0.71-1/GitHub.Copilot.Prerelease.installer.yaml new file mode 100644 index 000000000000..a2f158d70f97 --- /dev/null +++ b/manifests/g/GitHub/Copilot/Prerelease/v1.0.71-1/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.71-1 +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.71-1/copilot-win32-x64.zip + InstallerSha256: E73DABEC2FA80D0D99AADA500D033F0E35CB72B584E5E9288BD623CCE9EA27EC +- Architecture: arm64 + InstallerUrl: https://github.com/github/copilot-cli/releases/download/v1.0.71-1/copilot-win32-arm64.zip + InstallerSha256: 1F665C97C6BB582F3059D8C4B1399FDF0F669E1C102B4AADC738C52D56CE2BE2 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-07-14 diff --git a/manifests/g/GitHub/Copilot/Prerelease/v1.0.71-1/GitHub.Copilot.Prerelease.locale.en-US.yaml b/manifests/g/GitHub/Copilot/Prerelease/v1.0.71-1/GitHub.Copilot.Prerelease.locale.en-US.yaml new file mode 100644 index 000000000000..87586caeb084 --- /dev/null +++ b/manifests/g/GitHub/Copilot/Prerelease/v1.0.71-1/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.71-1 +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.71-1 +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.71-1/GitHub.Copilot.Prerelease.yaml b/manifests/g/GitHub/Copilot/Prerelease/v1.0.71-1/GitHub.Copilot.Prerelease.yaml new file mode 100644 index 000000000000..5dc9d999b684 --- /dev/null +++ b/manifests/g/GitHub/Copilot/Prerelease/v1.0.71-1/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.71-1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/GitHub/GitHubDesktop/3.6.3/GitHub.GitHubDesktop.installer.yaml b/manifests/g/GitHub/GitHubDesktop/3.6.3/GitHub.GitHubDesktop.installer.yaml new file mode 100644 index 000000000000..b5188428f1be --- /dev/null +++ b/manifests/g/GitHub/GitHubDesktop/3.6.3/GitHub.GitHubDesktop.installer.yaml @@ -0,0 +1,58 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: GitHub.GitHubDesktop +PackageVersion: 3.6.3 +UpgradeBehavior: install +Protocols: +- github-windows +- x-github-client +- x-github-desktop-auth +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + InstallerType: exe + Scope: user + InstallerUrl: https://desktop.githubusercontent.com/releases/3.6.3-931da4a1/GitHubDesktopSetup-x64.exe + InstallerSha256: 71E939B98B8BDD77B8178362399D5A6A49BC24D8CF7882F4AB1030BE3E14D435 + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent + ProductCode: GitHubDesktop +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://desktop.githubusercontent.com/releases/3.6.3-931da4a1/GitHubDesktopSetup-x64.msi + InstallerSha256: 62613AF0723746130D17E415175A9C312929A06CE232EC34DA476912CC2E11C3 + ProductCode: '{77BE69BD-B847-4AAA-8D06-E6C6DDB4B68A}' + AppsAndFeaturesEntries: + - DisplayName: GitHub Desktop Deployment Tool + ProductCode: '{77BE69BD-B847-4AAA-8D06-E6C6DDB4B68A}' + UpgradeCode: '{00D8E2EE-13EA-5BEB-87F0-70EFC46A7D4A}' +- Architecture: arm64 + InstallerType: exe + Scope: user + InstallerUrl: https://desktop.githubusercontent.com/releases/3.6.3-931da4a1/GitHubDesktopSetup-arm64.exe + InstallerSha256: 5B79429C8B43A2AA722A82241E3391F8D14F9EC118F2861D9A98180B8914041B + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent + ProductCode: GitHubDesktop +- Architecture: arm64 + InstallerType: wix + Scope: machine + InstallerUrl: https://desktop.githubusercontent.com/releases/3.6.3-931da4a1/GitHubDesktopSetup-arm64.msi + InstallerSha256: A69C53BCD4BDDF02E981DD3EFC40B2D6D760ADC4282A2DCE2300C3DB0B2B9E3A + ProductCode: '{3128EA02-3D62-4E95-9C0A-9DBE26E7578D}' + AppsAndFeaturesEntries: + - DisplayName: GitHub Desktop Deployment Tool + ProductCode: '{3128EA02-3D62-4E95-9C0A-9DBE26E7578D}' + UpgradeCode: '{00D8E2EE-13EA-5BEB-87F0-70EFC46A7D4A}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/GitHub/GitHubDesktop/3.6.3/GitHub.GitHubDesktop.locale.en-US.yaml b/manifests/g/GitHub/GitHubDesktop/3.6.3/GitHub.GitHubDesktop.locale.en-US.yaml new file mode 100644 index 000000000000..928971351ff9 --- /dev/null +++ b/manifests/g/GitHub/GitHubDesktop/3.6.3/GitHub.GitHubDesktop.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: GitHub.GitHubDesktop +PackageVersion: 3.6.3 +PackageLocale: en-US +Publisher: GitHub, Inc. +PublisherUrl: https://github.com/ +PublisherSupportUrl: https://github.com/desktop/desktop/issues +PrivacyUrl: https://docs.github.com/github/site-policy/github-privacy-statement +Author: GitHub, Inc. +PackageName: GitHub Desktop +PackageUrl: https://github.com/apps/desktop +License: MIT +LicenseUrl: https://github.com/desktop/desktop/blob/HEAD/LICENSE +Copyright: Copyright (c) GitHub, Inc. +ShortDescription: Focus on what matters instead of fighting with Git. +Description: GitHub Desktop is an open-source Electron-based GitHub app. It is written in TypeScript and uses React. +Moniker: github-desktop +Tags: +- git +- github +ReleaseNotes: |- + [Fixed] Resolve error that prevented Copilot-based features from working correctly on Windows - #22509 + [Fixed] Keep commit message @-mention autocomplete from surfacing users without a profile name when typing queries like "@null" - #22414. Thanks @sukanth! + [Fixed] Resolve a crash where the truncated repository path text could enter an infinite re-render loop - #22458 + [Fixed] Fall back to the main worktree so a repository no longer appears as missing when its linked worktree folder was deleted outside Desktop - #22474 + [Fixed] Keep files visible in the Changes list after Desktop returns from being backgrounded - #22497 + [Fixed] Show an error dialog instead of silently doing nothing when Copilot fails to generate a commit message due to a git error - #22496 + [Fixed] Copilot sessions from generating commit messages or resolving conflicts do not show up in VS Code - #22443 + [Fixed] Repository list scrolling no longer gets stuck or jitters when scrolling over tall groups (e.g. large organizations) - #22438. Thanks @peteski22! + [Improved] Clarify the line-ending conversion warning to explain that Git will automatically convert the file's line endings on next checkout, with a link to learn more - #21446. Thanks @Whitebrim! +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://docs.github.com/desktop +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GitHub/GitHubDesktop/3.6.3/GitHub.GitHubDesktop.locale.zh-CN.yaml b/manifests/g/GitHub/GitHubDesktop/3.6.3/GitHub.GitHubDesktop.locale.zh-CN.yaml new file mode 100644 index 000000000000..b59fff1ea202 --- /dev/null +++ b/manifests/g/GitHub/GitHubDesktop/3.6.3/GitHub.GitHubDesktop.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: GitHub.GitHubDesktop +PackageVersion: 3.6.3 +PackageLocale: zh-CN +Publisher: GitHub, Inc. +PublisherUrl: https://github.com/ +PublisherSupportUrl: https://github.com/desktop/desktop/issues +PrivacyUrl: https://docs.github.com/github/site-policy/github-privacy-statement +Author: GitHub, Inc. +PackageName: GitHub Desktop +PackageUrl: https://github.com/apps/desktop +License: MIT +LicenseUrl: https://github.com/desktop/desktop/blob/HEAD/LICENSE +Copyright: Copyright (c) GitHub, Inc. +ShortDescription: 专注于重要的事情,而不是与 Git 对着干。 +Description: GitHub Desktop 是一款基于 Electron 的开源 GitHub 应用。它由 TypeScript 编写,并使用了 React。 +Tags: +- git +- github +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.github.com/desktop +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GitHub/GitHubDesktop/3.6.3/GitHub.GitHubDesktop.yaml b/manifests/g/GitHub/GitHubDesktop/3.6.3/GitHub.GitHubDesktop.yaml new file mode 100644 index 000000000000..7cbde0ea0df5 --- /dev/null +++ b/manifests/g/GitHub/GitHubDesktop/3.6.3/GitHub.GitHubDesktop.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: GitHub.GitHubDesktop +PackageVersion: 3.6.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/GodotEngine/GodotEngine/Mono/4.7.1/GodotEngine.GodotEngine.Mono.installer.yaml b/manifests/g/GodotEngine/GodotEngine/Mono/4.7.1/GodotEngine.GodotEngine.Mono.installer.yaml new file mode 100644 index 000000000000..0a1bfa649e05 --- /dev/null +++ b/manifests/g/GodotEngine/GodotEngine/Mono/4.7.1/GodotEngine.GodotEngine.Mono.installer.yaml @@ -0,0 +1,35 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: GodotEngine.GodotEngine.Mono +PackageVersion: 4.7.1 +InstallerType: zip +NestedInstallerType: portable +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x86 + NestedInstallerFiles: + - RelativeFilePath: Godot_v4.7.1-stable_mono_win32/Godot_v4.7.1-stable_mono_win32.exe + PortableCommandAlias: godot + - RelativeFilePath: Godot_v4.7.1-stable_mono_win32/Godot_v4.7.1-stable_mono_win32_console.exe + PortableCommandAlias: godot_console + InstallerUrl: https://github.com/godotengine/godot/releases/download/4.7.1-stable/Godot_v4.7.1-stable_mono_win32.zip + InstallerSha256: EEE10A399C1C924169487BDADE80FAB45DE78B04E01A1EA18F345EC3E569BA92 +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: Godot_v4.7.1-stable_mono_win64/Godot_v4.7.1-stable_mono_win64.exe + PortableCommandAlias: godot + - RelativeFilePath: Godot_v4.7.1-stable_mono_win64/Godot_v4.7.1-stable_mono_win64_console.exe + PortableCommandAlias: godot_console + InstallerUrl: https://github.com/godotengine/godot/releases/download/4.7.1-stable/Godot_v4.7.1-stable_mono_win64.zip + InstallerSha256: 764A089809FB1A6F745686CE9F6D3CA83ADCE8FB60FB9A4E2324B63BAAEBAA45 +- Architecture: arm64 + NestedInstallerFiles: + - RelativeFilePath: Godot_v4.7.1-stable_mono_windows_arm64/Godot_v4.7.1-stable_mono_windows_arm64.exe + PortableCommandAlias: godot + - RelativeFilePath: Godot_v4.7.1-stable_mono_windows_arm64/Godot_v4.7.1-stable_mono_windows_arm64_console.exe + PortableCommandAlias: godot_console + InstallerUrl: https://github.com/godotengine/godot/releases/download/4.7.1-stable/Godot_v4.7.1-stable_mono_windows_arm64.zip + InstallerSha256: B6095E7866181157A32C5AF12A6A5E516B26752CE344AE9DA882C8EEC49A3277 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/GodotEngine/GodotEngine/Mono/4.7.1/GodotEngine.GodotEngine.Mono.locale.en-US.yaml b/manifests/g/GodotEngine/GodotEngine/Mono/4.7.1/GodotEngine.GodotEngine.Mono.locale.en-US.yaml new file mode 100644 index 000000000000..34466fd279de --- /dev/null +++ b/manifests/g/GodotEngine/GodotEngine/Mono/4.7.1/GodotEngine.GodotEngine.Mono.locale.en-US.yaml @@ -0,0 +1,50 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: GodotEngine.GodotEngine.Mono +PackageVersion: 4.7.1 +PackageLocale: en-US +Publisher: Godot Engine +PublisherUrl: https://godotengine.org/ +PublisherSupportUrl: https://github.com/godotengine/godot/issues +PrivacyUrl: https://godotengine.org/privacy-policy +Author: Godot Engine +PackageName: Godot Engine (Mono) +PackageUrl: https://github.com/godotengine/godot +License: MIT +LicenseUrl: https://github.com/godotengine/godot/blob/HEAD/LICENSE.txt +Copyright: |- + Copyright (c) 2014-present Godot Engine contributors. + Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. +CopyrightUrl: https://godotengine.org/license +ShortDescription: The Mono version of the Godot Engine +Moniker: godot-mono +Tags: +- game-development +- game-engine +- gamedev +- godot +- godotengine +- hacktoberfest +- multi-platform +- open-source +ReleaseNotes: |- + Godot 4.7.1 is a maintenance release addressing stability and usability issues, and fixing all sorts of bugs. Maintenance releases are compatible with previous releases and are recommended for adoption. + Report bugs on GitHub after checking that they haven't been reported: + - https://github.com/godotengine/godot/issues + - Release notes + - Complete changelog + - Curated changelog + - Download (GitHub): Expand Assets below +ReleaseNotesUrl: https://github.com/godotengine/godot/releases/tag/4.7.1-stable +InstallationNotes: |- + Note when running WinGet to Install This Package *Without Admin Privileges*: + WinGet *Can Not* Create Command Line Alias(es) unless Admin Privileges are provided, as without Admin Privileges Winget *Can Not* Create Symbolic Links for those Command Lines Aliases. + More Details: + https://github.com/microsoft/winget-cli/issues/549 + https://github.com/microsoft/winget-cli/issues/361 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.godotengine.org/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GodotEngine/GodotEngine/Mono/4.7.1/GodotEngine.GodotEngine.Mono.yaml b/manifests/g/GodotEngine/GodotEngine/Mono/4.7.1/GodotEngine.GodotEngine.Mono.yaml new file mode 100644 index 000000000000..5148e6a83d04 --- /dev/null +++ b/manifests/g/GodotEngine/GodotEngine/Mono/4.7.1/GodotEngine.GodotEngine.Mono.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: GodotEngine.GodotEngine.Mono +PackageVersion: 4.7.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/Gologin/Gologin/4.3.10/Gologin.Gologin.installer.yaml b/manifests/g/Gologin/Gologin/4.3.10/Gologin.Gologin.installer.yaml new file mode 100644 index 000000000000..19976821a110 --- /dev/null +++ b/manifests/g/Gologin/Gologin/4.3.10/Gologin.Gologin.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: Gologin.Gologin +PackageVersion: 4.3.10 +InstallerType: nullsoft +UpgradeBehavior: install +ProductCode: e254751a-2537-5636-8393-c4573034c5f6 +ReleaseDate: 2026-07-14 +AppsAndFeaturesEntries: +- DisplayName: Gologin 4.3.10 + ProductCode: e254751a-2537-5636-8393-c4573034c5f6 +Installers: +- Architecture: x64 + InstallerUrl: https://releases.gologin.com/Gologin%20Setup%204.3.10.exe + InstallerSha256: 504D1B64AB90E2DDF8970FC01476C4A530E8348CBC576C0E8EF2B9E4473F7CD1 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/Gologin/Gologin/4.3.10/Gologin.Gologin.locale.en-US.yaml b/manifests/g/Gologin/Gologin/4.3.10/Gologin.Gologin.locale.en-US.yaml new file mode 100644 index 000000000000..a0912704e287 --- /dev/null +++ b/manifests/g/Gologin/Gologin/4.3.10/Gologin.Gologin.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Gologin.Gologin +PackageVersion: 4.3.10 +PackageLocale: en-US +Publisher: GoLogin +PublisherUrl: https://gologin.com/ +PublisherSupportUrl: https://support.gologin.com/ +PackageName: Gologin +PackageUrl: https://gologin.com/ +License: Proprietary +LicenseUrl: https://support.gologin.com/articles/3574839-terms-of-service +Copyright: Copyright © 2026 GoLogin +ShortDescription: Antidetect browser for managing multiple accounts with unique fingerprints +Moniker: gologin +Tags: +- antidetect +- browser +- fingerprint +- privacy +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/Gologin/Gologin/4.3.10/Gologin.Gologin.yaml b/manifests/g/Gologin/Gologin/4.3.10/Gologin.Gologin.yaml new file mode 100644 index 000000000000..41fc9b9ae194 --- /dev/null +++ b/manifests/g/Gologin/Gologin/4.3.10/Gologin.Gologin.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: Gologin.Gologin +PackageVersion: 4.3.10 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/Google/AndroidStudio/2026.1.2.10/Google.AndroidStudio.installer.yaml b/manifests/g/Google/AndroidStudio/2026.1.2.10/Google.AndroidStudio.installer.yaml new file mode 100644 index 000000000000..ec9e9ea0eda5 --- /dev/null +++ b/manifests/g/Google/AndroidStudio/2026.1.2.10/Google.AndroidStudio.installer.yaml @@ -0,0 +1,24 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Google.AndroidStudio +PackageVersion: 2026.1.2.10 +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +InstallerSuccessCodes: +- 1223 +UpgradeBehavior: deny +ReleaseDate: 2026-07-14 +RequireExplicitUpgrade: true +AppsAndFeaturesEntries: +- DisplayVersion: '2026.1' +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + InstallerUrl: https://edgedl.me.gvt1.com/android/studio/install/2026.1.2.10/android-studio-quail2-windows.exe + InstallerSha256: 938FD37C6029C2BDFF8B62BED4FB8C87A260BEBE2DC7DA12D3F79B3AF432829E +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/Google/AndroidStudio/2026.1.2.10/Google.AndroidStudio.locale.en-US.yaml b/manifests/g/Google/AndroidStudio/2026.1.2.10/Google.AndroidStudio.locale.en-US.yaml new file mode 100644 index 000000000000..d6746783a21f --- /dev/null +++ b/manifests/g/Google/AndroidStudio/2026.1.2.10/Google.AndroidStudio.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: Google.AndroidStudio +PackageVersion: 2026.1.2.10 +PackageLocale: en-US +Publisher: Google LLC +PublisherUrl: https://developer.android.com/ +PublisherSupportUrl: https://developer.android.com/studio/intro +PrivacyUrl: https://policies.google.com/privacy +PackageName: Android Studio +PackageUrl: https://developer.android.com/studio +License: Android Software Development Kit License Agreement +LicenseUrl: https://developer.android.com/studio/terms +Copyright: Copyright © 2000–2024 Google +CopyrightUrl: https://developer.android.com/studio/terms +ShortDescription: The official Integrated Development Environment (IDE) for Android app development. +Description: |- + Android Studio is the official Integrated Development Environment (IDE) for Android app development. + Based on the powerful code editor and developer tools from IntelliJ IDEA, + Android Studio offers even more features that enhance your productivity when building Android apps. +Moniker: android-studio +Tags: +- aab +- adb +- android +- androidstudio +- apk +- app +- debug +- development +- emulator +- fastboot +- ide +- intellij +- studio +Agreements: +- AgreementLabel: Android Software Development Kit License Agreement + AgreementUrl: https://developer.android.com/studio/terms +ReleaseNotesUrl: https://androidstudio.googleblog.com/ +Documentations: +- DocumentLabel: Known Issues + DocumentUrl: https://developer.android.com/studio/known-issues +- DocumentLabel: Troubleshoot + DocumentUrl: https://developer.android.com/studio/troubleshoot +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/Google/AndroidStudio/2026.1.2.10/Google.AndroidStudio.yaml b/manifests/g/Google/AndroidStudio/2026.1.2.10/Google.AndroidStudio.yaml new file mode 100644 index 000000000000..870e14d3e7ce --- /dev/null +++ b/manifests/g/Google/AndroidStudio/2026.1.2.10/Google.AndroidStudio.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: Google.AndroidStudio +PackageVersion: 2026.1.2.10 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/Google/Chrome/EXE/138.0.7204.169/Google.Chrome.EXE.installer.yaml b/manifests/g/Google/Chrome/EXE/138.0.7204.169/Google.Chrome.EXE.installer.yaml deleted file mode 100644 index 260b8365a477..000000000000 --- a/manifests/g/Google/Chrome/EXE/138.0.7204.169/Google.Chrome.EXE.installer.yaml +++ /dev/null @@ -1,74 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.EXE -PackageVersion: 138.0.7204.169 -InstallerType: exe -InstallModes: -- silent -InstallerSwitches: - Log: --verbose-logging --log-file="" -ExpectedReturnCodes: -- InstallerReturnCode: 60 - ReturnResponse: installInProgress -- InstallerReturnCode: 22 - ReturnResponse: cancelledByUser -- InstallerReturnCode: 4 - ReturnResponse: downgrade -- InstallerReturnCode: 3 - ReturnResponse: alreadyInstalled -UpgradeBehavior: install -Protocols: -- http -- https -- mailto -- tel -FileExtensions: -- htm -- html -- pdf -- shtml -- svg -- webp -- xht -- xhtml -ProductCode: Google Chrome -Installers: -- Architecture: x86 - Scope: user - InstallerUrl: https://dl.google.com/release2/chrome/ek3q6pvih7wdijttbn22hfkhsq_138.0.7204.169/138.0.7204.169_chrome_installer_uncompressed.exe - InstallerSha256: 9CA54578D79E3E7C1EFAA9EDD4A08B6051B1950466CE532BDA192ACB5686ED5B - InstallerSwitches: - Custom: --do-not-launch-chrome -- Architecture: x86 - Scope: machine - InstallerUrl: https://dl.google.com/release2/chrome/ek3q6pvih7wdijttbn22hfkhsq_138.0.7204.169/138.0.7204.169_chrome_installer_uncompressed.exe - InstallerSha256: 9CA54578D79E3E7C1EFAA9EDD4A08B6051B1950466CE532BDA192ACB5686ED5B - InstallerSwitches: - Custom: --do-not-launch-chrome --system-level -- Architecture: x64 - Scope: user - InstallerUrl: https://dl.google.com/release2/chrome/ac2j67h3odyq3s2qkw2j5lhcieia_138.0.7204.169/138.0.7204.169_chrome_installer_uncompressed.exe - InstallerSha256: F650792667F5A2F5C482D8514914A7FC12D8BAF4D265339D635738DD9A91BAFF - InstallerSwitches: - Custom: --do-not-launch-chrome -- Architecture: x64 - Scope: machine - InstallerUrl: https://dl.google.com/release2/chrome/ac2j67h3odyq3s2qkw2j5lhcieia_138.0.7204.169/138.0.7204.169_chrome_installer_uncompressed.exe - InstallerSha256: F650792667F5A2F5C482D8514914A7FC12D8BAF4D265339D635738DD9A91BAFF - InstallerSwitches: - Custom: --do-not-launch-chrome --system-level -- Architecture: arm64 - Scope: user - InstallerUrl: https://dl.google.com/release2/chrome/ackkrhunfob57xwk7tx7gpzcngjq_138.0.7204.169/138.0.7204.169_chrome_installer_uncompressed.exe - InstallerSha256: F19A60A139364C5BA95038C980A387CCDCFE8E5F29ADAC97C290D929D79AD54C - InstallerSwitches: - Custom: --do-not-launch-chrome -- Architecture: arm64 - Scope: machine - InstallerUrl: https://dl.google.com/release2/chrome/ackkrhunfob57xwk7tx7gpzcngjq_138.0.7204.169/138.0.7204.169_chrome_installer_uncompressed.exe - InstallerSha256: F19A60A139364C5BA95038C980A387CCDCFE8E5F29ADAC97C290D929D79AD54C - InstallerSwitches: - Custom: --do-not-launch-chrome --system-level -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/EXE/138.0.7204.169/Google.Chrome.EXE.locale.en-US.yaml b/manifests/g/Google/Chrome/EXE/138.0.7204.169/Google.Chrome.EXE.locale.en-US.yaml deleted file mode 100644 index 5bbfa3ad09a1..000000000000 --- a/manifests/g/Google/Chrome/EXE/138.0.7204.169/Google.Chrome.EXE.locale.en-US.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.EXE -PackageVersion: 138.0.7204.169 -PackageLocale: en-US -Publisher: Google LLC -PublisherUrl: https://www.google.com/ -PublisherSupportUrl: https://support.google.com/ -PrivacyUrl: https://policies.google.com/privacy -Author: Google LLC -PackageName: Google Chrome (EXE) -PackageUrl: https://www.google.com/chrome/ -License: Freeware -LicenseUrl: https://www.google.com/chrome/terms -Copyright: Copyright 2024 Google LLC. All rights reserved. -ShortDescription: The browser built by Google -Description: A more simple, secure, and faster web browser than ever, with Google’s smarts built-in. -Tags: -- browser -- chromium -- internet -- web -- webpage -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/EXE/138.0.7204.169/Google.Chrome.EXE.locale.nb-NO.yaml b/manifests/g/Google/Chrome/EXE/138.0.7204.169/Google.Chrome.EXE.locale.nb-NO.yaml deleted file mode 100644 index a93e862c6041..000000000000 --- a/manifests/g/Google/Chrome/EXE/138.0.7204.169/Google.Chrome.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.EXE -PackageVersion: 138.0.7204.169 -PackageLocale: nb-NO -Publisher: Google LLC -PublisherUrl: https://www.google.com/ -PublisherSupportUrl: https://support.google.com/?hl=no -PrivacyUrl: https://policies.google.com/privacy?hl=no -Author: Google LLC -PackageName: Google Chrome (EXE) -PackageUrl: https://www.google.com/intl/no/chrome/ -License: Gratis Programvare -LicenseUrl: https://www.google.com/intl/no/chrome/terms -Copyright: Copyright 2024 Google LLC. Med enerett. -ShortDescription: Nettleseren fra Google -Description: Enklere, tryggere og raskere enn noensinne – med Googles smarte funksjoner. -Tags: -- chromium -- nettleseren -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/EXE/138.0.7204.169/Google.Chrome.EXE.locale.zh-CN.yaml b/manifests/g/Google/Chrome/EXE/138.0.7204.169/Google.Chrome.EXE.locale.zh-CN.yaml deleted file mode 100644 index 1ed1f8dc5206..000000000000 --- a/manifests/g/Google/Chrome/EXE/138.0.7204.169/Google.Chrome.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.EXE -PackageVersion: 138.0.7204.169 -PackageLocale: zh-CN -Publisher: Google LLC -PublisherUrl: https://www.google.com/ -PublisherSupportUrl: https://support.google.com/?hl=zh-Hans -PrivacyUrl: https://policies.google.com/privacy?hl=zh-CN -Author: Google LLC -PackageName: Google Chrome (EXE) -PackageUrl: https://www.google.com/intl/zh-CN/chrome/ -License: 免费软件 -LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms -Copyright: 版权所有 2024 Google LLC. 保留所有权利。 -ShortDescription: 由 Google 打造的浏览器 -Description: 得益于 Google 智能工具,Chrome 现在更易用、更安全、更快速。 -Tags: -- chromium -- 互联网 -- 浏览器 -- 网页 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/EXE/139.0.7258.155/Google.Chrome.EXE.installer.yaml b/manifests/g/Google/Chrome/EXE/139.0.7258.155/Google.Chrome.EXE.installer.yaml deleted file mode 100644 index a281f3738362..000000000000 --- a/manifests/g/Google/Chrome/EXE/139.0.7258.155/Google.Chrome.EXE.installer.yaml +++ /dev/null @@ -1,74 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.EXE -PackageVersion: 139.0.7258.155 -InstallerType: exe -InstallModes: -- silent -InstallerSwitches: - Log: --verbose-logging --log-file="" -ExpectedReturnCodes: -- InstallerReturnCode: 60 - ReturnResponse: installInProgress -- InstallerReturnCode: 22 - ReturnResponse: cancelledByUser -- InstallerReturnCode: 4 - ReturnResponse: downgrade -- InstallerReturnCode: 3 - ReturnResponse: alreadyInstalled -UpgradeBehavior: install -Protocols: -- http -- https -- mailto -- tel -FileExtensions: -- htm -- html -- pdf -- shtml -- svg -- webp -- xht -- xhtml -ProductCode: Google Chrome -Installers: -- Architecture: x86 - Scope: user - InstallerUrl: https://dl.google.com/release2/chrome/acbj57wq2k6dcqdfm67khvqhuasq_139.0.7258.155/139.0.7258.155_chrome_installer_uncompressed.exe - InstallerSha256: DD67FE6B6EA6CE94EDF27D7F9A0C8110668CD221EF7F88A1369492AE6E33661A - InstallerSwitches: - Custom: --do-not-launch-chrome -- Architecture: x86 - Scope: machine - InstallerUrl: https://dl.google.com/release2/chrome/acbj57wq2k6dcqdfm67khvqhuasq_139.0.7258.155/139.0.7258.155_chrome_installer_uncompressed.exe - InstallerSha256: DD67FE6B6EA6CE94EDF27D7F9A0C8110668CD221EF7F88A1369492AE6E33661A - InstallerSwitches: - Custom: --do-not-launch-chrome --system-level -- Architecture: x64 - Scope: user - InstallerUrl: https://dl.google.com/release2/chrome/ac3tly6emuya6wht2jjcdao4aubq_139.0.7258.155/139.0.7258.155_chrome_installer_uncompressed.exe - InstallerSha256: 12A00A63171EDDBB4DDBB6864CA44458A2D737B1E85095D9272EECBABD1D232E - InstallerSwitches: - Custom: --do-not-launch-chrome -- Architecture: x64 - Scope: machine - InstallerUrl: https://dl.google.com/release2/chrome/ac3tly6emuya6wht2jjcdao4aubq_139.0.7258.155/139.0.7258.155_chrome_installer_uncompressed.exe - InstallerSha256: 12A00A63171EDDBB4DDBB6864CA44458A2D737B1E85095D9272EECBABD1D232E - InstallerSwitches: - Custom: --do-not-launch-chrome --system-level -- Architecture: arm64 - Scope: user - InstallerUrl: https://dl.google.com/release2/chrome/ic5wmwmaa5tedqys5p462emclu_139.0.7258.155/139.0.7258.155_chrome_installer_uncompressed.exe - InstallerSha256: 5768D96AFD31EAE00578213944B4E90B4B594D5DB6A7E1D755158DBB76976368 - InstallerSwitches: - Custom: --do-not-launch-chrome -- Architecture: arm64 - Scope: machine - InstallerUrl: https://dl.google.com/release2/chrome/ic5wmwmaa5tedqys5p462emclu_139.0.7258.155/139.0.7258.155_chrome_installer_uncompressed.exe - InstallerSha256: 5768D96AFD31EAE00578213944B4E90B4B594D5DB6A7E1D755158DBB76976368 - InstallerSwitches: - Custom: --do-not-launch-chrome --system-level -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/EXE/139.0.7258.155/Google.Chrome.EXE.locale.en-US.yaml b/manifests/g/Google/Chrome/EXE/139.0.7258.155/Google.Chrome.EXE.locale.en-US.yaml deleted file mode 100644 index 95b0a0634502..000000000000 --- a/manifests/g/Google/Chrome/EXE/139.0.7258.155/Google.Chrome.EXE.locale.en-US.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.EXE -PackageVersion: 139.0.7258.155 -PackageLocale: en-US -Publisher: Google LLC -PublisherUrl: https://www.google.com/ -PublisherSupportUrl: https://support.google.com/ -PrivacyUrl: https://policies.google.com/privacy -Author: Google LLC -PackageName: Google Chrome (EXE) -PackageUrl: https://www.google.com/chrome/ -License: Freeware -LicenseUrl: https://www.google.com/chrome/terms -Copyright: Copyright 2024 Google LLC. All rights reserved. -ShortDescription: The browser built by Google -Description: A more simple, secure, and faster web browser than ever, with Google’s smarts built-in. -Tags: -- browser -- chromium -- internet -- web -- webpage -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/EXE/139.0.7258.155/Google.Chrome.EXE.locale.nb-NO.yaml b/manifests/g/Google/Chrome/EXE/139.0.7258.155/Google.Chrome.EXE.locale.nb-NO.yaml deleted file mode 100644 index 1fb60e2bc82f..000000000000 --- a/manifests/g/Google/Chrome/EXE/139.0.7258.155/Google.Chrome.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.EXE -PackageVersion: 139.0.7258.155 -PackageLocale: nb-NO -Publisher: Google LLC -PublisherUrl: https://www.google.com/ -PublisherSupportUrl: https://support.google.com/?hl=no -PrivacyUrl: https://policies.google.com/privacy?hl=no -Author: Google LLC -PackageName: Google Chrome (EXE) -PackageUrl: https://www.google.com/intl/no/chrome/ -License: Gratis Programvare -LicenseUrl: https://www.google.com/intl/no/chrome/terms -Copyright: Copyright 2024 Google LLC. Med enerett. -ShortDescription: Nettleseren fra Google -Description: Enklere, tryggere og raskere enn noensinne – med Googles smarte funksjoner. -Tags: -- chromium -- nettleseren -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/EXE/139.0.7258.155/Google.Chrome.EXE.locale.zh-CN.yaml b/manifests/g/Google/Chrome/EXE/139.0.7258.155/Google.Chrome.EXE.locale.zh-CN.yaml deleted file mode 100644 index e68e2872ef75..000000000000 --- a/manifests/g/Google/Chrome/EXE/139.0.7258.155/Google.Chrome.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.EXE -PackageVersion: 139.0.7258.155 -PackageLocale: zh-CN -Publisher: Google LLC -PublisherUrl: https://www.google.com/ -PublisherSupportUrl: https://support.google.com/?hl=zh-Hans -PrivacyUrl: https://policies.google.com/privacy?hl=zh-CN -Author: Google LLC -PackageName: Google Chrome (EXE) -PackageUrl: https://www.google.com/intl/zh-CN/chrome/ -License: 免费软件 -LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms -Copyright: 版权所有 2024 Google LLC. 保留所有权利。 -ShortDescription: 由 Google 打造的浏览器 -Description: 得益于 Google 智能工具,Chrome 现在更易用、更安全、更快速。 -Tags: -- chromium -- 互联网 -- 浏览器 -- 网页 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/CloudSDK/575.0.1/Google.CloudSDK.installer.yaml b/manifests/g/Google/CloudSDK/576.0.0/Google.CloudSDK.installer.yaml similarity index 94% rename from manifests/g/Google/CloudSDK/575.0.1/Google.CloudSDK.installer.yaml rename to manifests/g/Google/CloudSDK/576.0.0/Google.CloudSDK.installer.yaml index fec104b81f39..5e93e4db14ba 100644 --- a/manifests/g/Google/CloudSDK/575.0.1/Google.CloudSDK.installer.yaml +++ b/manifests/g/Google/CloudSDK/576.0.0/Google.CloudSDK.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: Google.CloudSDK -PackageVersion: 575.0.1 +PackageVersion: 576.0.0 InstallerType: nullsoft Scope: machine InstallModes: diff --git a/manifests/g/Google/CloudSDK/575.0.1/Google.CloudSDK.locale.en-US.yaml b/manifests/g/Google/CloudSDK/576.0.0/Google.CloudSDK.locale.en-US.yaml similarity index 95% rename from manifests/g/Google/CloudSDK/575.0.1/Google.CloudSDK.locale.en-US.yaml rename to manifests/g/Google/CloudSDK/576.0.0/Google.CloudSDK.locale.en-US.yaml index 33b49d52c8fd..99a8f446cc8a 100644 --- a/manifests/g/Google/CloudSDK/575.0.1/Google.CloudSDK.locale.en-US.yaml +++ b/manifests/g/Google/CloudSDK/576.0.0/Google.CloudSDK.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: Google.CloudSDK -PackageVersion: 575.0.1 +PackageVersion: 576.0.0 PackageLocale: en-US Publisher: Google LLC PublisherUrl: https://cloud.google.com/ diff --git a/manifests/g/Google/CloudSDK/575.0.1/Google.CloudSDK.yaml b/manifests/g/Google/CloudSDK/576.0.0/Google.CloudSDK.yaml similarity index 88% rename from manifests/g/Google/CloudSDK/575.0.1/Google.CloudSDK.yaml rename to manifests/g/Google/CloudSDK/576.0.0/Google.CloudSDK.yaml index 1b2185b0c75e..6d8fc8d351bc 100644 --- a/manifests/g/Google/CloudSDK/575.0.1/Google.CloudSDK.yaml +++ b/manifests/g/Google/CloudSDK/576.0.0/Google.CloudSDK.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: Google.CloudSDK -PackageVersion: 575.0.1 +PackageVersion: 576.0.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/g/Gruntwork/Terragrunt/1.1.1/Gruntwork.Terragrunt.installer.yaml b/manifests/g/Gruntwork/Terragrunt/1.1.1/Gruntwork.Terragrunt.installer.yaml new file mode 100644 index 000000000000..6df010a9f58b --- /dev/null +++ b/manifests/g/Gruntwork/Terragrunt/1.1.1/Gruntwork.Terragrunt.installer.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Gruntwork.Terragrunt +PackageVersion: 1.1.1 +InstallerType: portable +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: terragrunt.exe + PortableCommandAlias: terragrunt +Commands: +- terragrunt +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/gruntwork-io/terragrunt/releases/download/v1.1.1/terragrunt_windows_386.exe + InstallerSha256: B9F1064B30CC72727F164494E8C4BECF063A973417F0FFB52A906AE53DE2D506 +- Architecture: x64 + InstallerUrl: https://github.com/gruntwork-io/terragrunt/releases/download/v1.1.1/terragrunt_windows_amd64.exe + InstallerSha256: 0AE2806AD974FCD3E75680B6B702BEC85A1F62B23F30202E58D4D2D38795E3EA +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/Gruntwork/Terragrunt/1.1.1/Gruntwork.Terragrunt.locale.en-US.yaml b/manifests/g/Gruntwork/Terragrunt/1.1.1/Gruntwork.Terragrunt.locale.en-US.yaml new file mode 100644 index 000000000000..cb1dcf99a458 --- /dev/null +++ b/manifests/g/Gruntwork/Terragrunt/1.1.1/Gruntwork.Terragrunt.locale.en-US.yaml @@ -0,0 +1,100 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Gruntwork.Terragrunt +PackageVersion: 1.1.1 +PackageLocale: en-US +Publisher: Gruntwork +PublisherUrl: https://terragrunt.gruntwork.io/ +PublisherSupportUrl: https://terragrunt.gruntwork.io/docs/community/support +PrivacyUrl: https://gruntwork.io/legal/privacy-policy +PackageName: Terragrunt +PackageUrl: https://github.com/gruntwork-io/terragrunt/releases/tag/v0.68.9 +License: MIT +LicenseUrl: https://github.com/gruntwork-io/terragrunt/blob/HEAD/LICENSE.txt +Copyright: © 2024 Gruntwork, Inc. All rights reserved. +ShortDescription: Terragrunt is a thin wrapper for Terraform that provides extra tools for keeping your Terraform configurations DRY, working with multiple Terraform modules, and managing remote state. +Description: Terragrunt is a thin wrapper for Terraform that provides extra tools for keeping your Terraform configurations DRY, working with multiple Terraform modules, and managing remote state. +Tags: +- IaC +- Infrastructure as Code +- Terraform +- Terraform Wrapper +- terragrunt +ReleaseNotes: |- + 🐛 Bug Fixes + Chained role assumption for the S3 backend + When AWS credentials were supplied through --auth-provider-cmd or environment variables, Terragrunt ignored the assume_role attribute of the remote_state block for its own backend operations, such as bootstrapping the state bucket. In cross-account setups this caused access errors, even though OpenTofu/Terraform itself assumed the role correctly during runs. + Terragrunt now uses the supplied credentials as the source identity and assumes the configured role on top of them. The same applies to roles configured via the iam_role attribute or the --iam-assume-role flag, and to fetching dependency outputs directly from S3 state. + Safer temporary clone directories for terragrunt catalog + Terragrunt now creates a fresh temporary clone directory for each catalog load, rejects symlinked clone roots, and removes catalog clones when the TUI session exits. + Resolve dependency outputs for units that reference a dependency in a hook, extra_arguments, or remote_state block + Resolving a unit's dependency outputs for a downstream unit no longer fails when that unit references its own dependency in: + - a before_hook, after_hook, or error_hook + - an extra_arguments block + - a remote_state block + Previously these raised There is no variable named "dependency" on the downstream unit, and a remote_state reference could crash Terragrunt. + Limit IaC engine archive extraction + Terragrunt now protects developer machines and CI runners from engine archives that expand into unexpectedly large amounts of data. If an IaC engine package is unusually large or contains too many files, Terragrunt stops processing it before it can consume excessive disk space. + --filter-allow-destroy with ...[] dependent-traversal filters no longer fails + --filter-allow-destroy --filter '...[HEAD~1...HEAD]' failed with "Too many command line arguments" or hung when the deleted unit had dependents. Terragrunt now correctly plans and destroys deleted units regardless of whether dependents are included in the run. + Fix find and list missing units inside generated stacks for Git-based filters + terragrunt find and terragrunt list with a Git-based filter (for example --filter '[HEAD^1...HEAD]') now detect units inside generated stacks. Previously they did not generate stacks in the worktrees they create for the comparison, so no unit nested in a generated stack was ever surfaced, while terragrunt run --all with the same filter targeted those units correctly. + This affected every change that lands inside a generated stack, including a modified terragrunt.stack.hcl, a change to a unit's own files, and a change to a file the stack reads via read_terragrunt_config or mark_glob_as_read. + Stacks are generated only inside the comparison worktrees; find and list still do not generate stacks in your current working directory by default. + Treat Git source ref values strictly as references + Terragrunt now passes the ref from a Git module source to git strictly as a reference when downloading through content-addressable storage. Previously a source whose ref began with a git option (for example a value starting with --) could be interpreted by git as an option rather than a reference while fetching the source. + Terragrunt now terminates git option parsing before the repository and reference arguments in its fetch, clone, and ls-remote invocations, so these values can only ever be read as the repository and reference they are meant to be. Normal refs, branches, tags, and commit SHAs continue to work unchanged. + hcl validate resolves get_original_terragrunt_dir() to the discovered unit + terragrunt hcl validate and terragrunt hcl validate --inputs now resolve get_original_terragrunt_dir() to each discovered unit's own directory instead of the directory the command was launched from. Previously, when the command ran from a parent directory that discovered units in subdirectories, any read_terragrunt_config() call that built a path relative to get_original_terragrunt_dir() resolved against the wrong directory and failed with "You attempted to run terragrunt in a folder that does not contain a terragrunt.hcl file", even though plan, apply, and run validate worked on the same configuration. + Both commands now set the original config path per discovered unit before parsing, matching the behavior of run and backend bootstrap, so relative paths resolve against the unit that owns them. + Respect -lockfile=readonly during provider caching + When you pass -lockfile=readonly to init, Terragrunt no longer generates or updates .terraform.lock.hcl while warming the provider cache. Previously the cache step could write the lock file before OpenTofu/Terraform ran, so the read-only check always passed and silently defeated the flag. + Terragrunt now leaves the lock file untouched and lets OpenTofu/Terraform enforce it, failing when the lock file is missing or incomplete. The flag is honored whether it is supplied on the command line or through the TF_CLI_ARGS or TF_CLI_ARGS_init environment variables. + run --all no longer crashes on dependency discovery with graph filters + Running run --all with a filter that expands a git range through the dependency graph (for example [HEAD~1...HEAD]...) could fail during dependency discovery, reporting that a component "is missing its working directory". Whether it happened depended on the size and shape of the changed unit's dependency closure, so the same filter succeeded on smaller branches and find was unaffected. + A dependency reached from several units at once could become visible to discovery before its working directory was set, so a concurrent traversal could read it before it was complete. Dependencies now have their working directory set before they become visible, so run --all behaves the same regardless of graph size. + terraform_binary respected by run --all when both tofu and terraform are on PATH + run --all ignored a unit's terraform_binary setting and fell back to the auto-detected default (OpenTofu when both binaries are on PATH). The per-unit options used to execute each unit are cloned from the stack options, whose binary path is the auto-detected default, and the configured value was never applied to them. + Each unit now honors its own terraform_binary, matching the behavior of a single run. Setting --tf-path or TG_TF_PATH still takes precedence over the config value. + S3 bucket creation failures report the underlying error + When creating the state bucket failed during backend bootstrap, the reported error was a misleading NoSuchBucket from a follow-up access check, hiding the actual cause. The original creation error, such as AccessDenied, is now part of the reported message. + Allow empty locals blocks in terragrunt.stack.hcl + Fixed a bug where an empty locals {} block in a stack configuration could break stack generate. + Clear error when terraform.source references a dependency output + A terraform.source that references dependency..outputs. is now rejected with a message explaining that the module source must be resolvable before dependencies are evaluated. + Terragrunt resolves the source while discovering units and building the run queue, before any dependency has run, so such a source can never be satisfied. Previously it surfaced a cryptic decode error. + 🧪 Experiments Added + oci - Module sources from OCI registries + The oci experiment has been added as the gate for downloading source code (including OpenTofu modules) from OCI Distribution registries using oci:// schema URLs in Terragrunt configurations (including terraform.source attributes). This targets the same registries OpenTofu 1.10 supports natively, such as Amazon ECR, GitHub Container Registry, Azure Container Registry, Google Artifact Registry, and self-hosted or air-gapped registries. + Enabling the experiment has no behavioral effect yet: the getter that will resolve oci:// sources is not wired into source downloading, so oci:// sources still fail to download. Functional support will land in follow-up releases, gated by this experiment. + For setup steps, see the experiment documentation. + version-attribute - Resolve registry modules from a version constraint + The version-attribute experiment has been added to gate a new version attribute on the terraform block. It holds a version constraint (such as ~> 3.3 or >= 1.0.0, < 2.0.0) for a tfr:// registry module, and Terragrunt resolves it to the highest published version that satisfies the constraint before downloading: + terraform { + source = "tfr://registry.opentofu.org/terraform-aws-modules/vpc/aws" + version = "~> 3.3" + } + This brings the terraform block to parity with the version argument on OpenTofu and Terraform module blocks. The attribute applies to tfr:// sources only, and cannot be combined with an inline ?version= on the same source. + Enable it with --experiment version-attribute. For setup steps and the criteria for stabilization, see the experiment documentation. + ⚙️ Process Updates + Friendly panic reports + Terragrunt now writes a terragrunt-crash-YYYYMMDDTHHMMSSZ-.log file when it crashes. + The report includes runtime details, the command line, the panic message, and the stack trace. You can conveniently share this file (after reviewing for sensitive information) to report panics if Terragrunt crashes. + Pull Requests + ✨ Features + - feat: terragrunt panic reporting by @denis256 in #6120 + - feat(experiment): introduce oci experiment flag for OCI module sources by @denis256 in #6461 + - feat(getter): add OCIGetter by @denis256 in #6478 + - feat: Add and validate the version attribute on the terraform block by @yhakbar in #6475 + - feat: Gate and resolve the version constraint at download time by @yhakbar in #6477 + 🐛 Bug Fixes + - fix: Avoiding generation of the lockfile when users supply -lockfile=readonly by @yhakbar in #6358 + - fix: Fixing combination of --filter-allow-destroy with graph + Git expression combo by @yhakbar in #6322 + - fix: use updated/correct GTM tag by @ZachGoldberg in #6439 +ReleaseNotesUrl: https://github.com/gruntwork-io/terragrunt/releases/tag/v1.1.1 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/gruntwork-io/terragrunt/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/Gruntwork/Terragrunt/1.1.1/Gruntwork.Terragrunt.yaml b/manifests/g/Gruntwork/Terragrunt/1.1.1/Gruntwork.Terragrunt.yaml new file mode 100644 index 000000000000..cc6897f2c40e --- /dev/null +++ b/manifests/g/Gruntwork/Terragrunt/1.1.1/Gruntwork.Terragrunt.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: Gruntwork.Terragrunt +PackageVersion: 1.1.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/gg/ai/ggcode-cli/1.3.152/gg.ai.ggcode-cli.installer.yaml b/manifests/g/gg/ai/ggcode-cli/1.3.152/gg.ai.ggcode-cli.installer.yaml new file mode 100644 index 000000000000..18e2017c6e72 --- /dev/null +++ b/manifests/g/gg/ai/ggcode-cli/1.3.152/gg.ai.ggcode-cli.installer.yaml @@ -0,0 +1,38 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: gg.ai.ggcode-cli +PackageVersion: 1.3.152 +Platform: +- Windows.Desktop +InstallerType: wix +Scope: user +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- ggcode +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/topcheer/ggcode/releases/download/v1.3.152/ggcode_1.3.152_windows_x64.msi + InstallerSha256: 548BCB67831D47F54AD3DF44D886182660DC93A13106B27AB5AF6D3060D82148 + ProductCode: '{F003E337-E96A-46C3-9FA6-CBE4EAD58512}' + AppsAndFeaturesEntries: + - DisplayName: ggcode + Publisher: GG AI Studio + ProductCode: '{F003E337-E96A-46C3-9FA6-CBE4EAD58512}' + UpgradeCode: '{B3C4D5E6-F7A8-9012-BCDE-F23456789012}' +- Architecture: arm64 + InstallerUrl: https://github.com/topcheer/ggcode/releases/download/v1.3.152/ggcode_1.3.152_windows_arm64.msi + InstallerSha256: 8BEB1C41459618CE960CA13A15E5A6FAEEBBECC92202ABE91785BA15B52091DC + ProductCode: '{5484BD25-BE2E-4BF7-8475-A2F3E81E176B}' + AppsAndFeaturesEntries: + - DisplayName: ggcode + Publisher: GG AI Studio + ProductCode: '{5484BD25-BE2E-4BF7-8475-A2F3E81E176B}' + UpgradeCode: '{B3C4D5E6-F7A8-9012-BCDE-F23456789012}' +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-07-14 diff --git a/manifests/g/gg/ai/ggcode-cli/1.3.152/gg.ai.ggcode-cli.locale.en-US.yaml b/manifests/g/gg/ai/ggcode-cli/1.3.152/gg.ai.ggcode-cli.locale.en-US.yaml new file mode 100644 index 000000000000..f407f82cf307 --- /dev/null +++ b/manifests/g/gg/ai/ggcode-cli/1.3.152/gg.ai.ggcode-cli.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: gg.ai.ggcode-cli +PackageVersion: 1.3.152 +PackageLocale: en-US +Publisher: GG AI Studio +PublisherUrl: https://github.com/topcheer +PublisherSupportUrl: https://github.com/topcheer/ggcode/issues +Author: GG AI Studio +PackageName: ggcode +PackageUrl: https://github.com/topcheer/ggcode +License: MIT +LicenseUrl: https://github.com/topcheer/ggcode/blob/v1.3.52/LICENSE +ShortDescription: AI coding agent for the terminal. +Description: |- + ggcode is an AI coding agent for terminal-first workflows. It can understand + repositories, edit files, run commands, use MCP tools, and keep working with + resumable sessions inside a full-screen TUI. +Moniker: ggcode +Tags: +- ai +- cli +- coding +- developer-tools +- mcp +- terminal +ReleaseNotesUrl: https://github.com/topcheer/ggcode/releases/tag/v1.3.152 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/topcheer/ggcode/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/gg/ai/ggcode-cli/1.3.152/gg.ai.ggcode-cli.yaml b/manifests/g/gg/ai/ggcode-cli/1.3.152/gg.ai.ggcode-cli.yaml new file mode 100644 index 000000000000..3be4bc4164ce --- /dev/null +++ b/manifests/g/gg/ai/ggcode-cli/1.3.152/gg.ai.ggcode-cli.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: gg.ai.ggcode-cli +PackageVersion: 1.3.152 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/gg/ai/ggcode-desktop/1.3.152/gg.ai.ggcode-desktop.installer.yaml b/manifests/g/gg/ai/ggcode-desktop/1.3.152/gg.ai.ggcode-desktop.installer.yaml new file mode 100644 index 000000000000..5c85c79c7158 --- /dev/null +++ b/manifests/g/gg/ai/ggcode-desktop/1.3.152/gg.ai.ggcode-desktop.installer.yaml @@ -0,0 +1,49 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: gg.ai.ggcode-desktop +PackageVersion: 1.3.152 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.17763.0 +InstallerType: wix +Scope: user +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /qn + SilentWithProgress: /qb +UpgradeBehavior: install +ProductCode: '{4652FE03-2116-419C-A034-5FCFFA00449A}' +AppsAndFeaturesEntries: +- DisplayName: GGCode Desktop + Publisher: GG AI Studio + ProductCode: '{4652FE03-2116-419C-A034-5FCFFA00449A}' + UpgradeCode: '{D4E5F6A7-B8C9-0123-CDEF-345678901234}' + InstallerType: wix +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/topcheer/ggcode/releases/download/v1.3.152/ggcode-desktop_1.3.152_windows_x64.msi + InstallerSha256: 24E41B52B9F3586142BACA6CE2D053F2E89E8A5D519810631F528E5BFDF4D887 + ProductCode: '{4652FE03-2116-419C-A034-5FCFFA00449A}' + AppsAndFeaturesEntries: + - DisplayName: GGCode Desktop + Publisher: GG AI Studio + ProductCode: '{4652FE03-2116-419C-A034-5FCFFA00449A}' + UpgradeCode: '{D4E5F6A7-B8C9-0123-CDEF-345678901234}' + InstallerType: wix +- Architecture: arm64 + InstallerUrl: https://github.com/topcheer/ggcode/releases/download/v1.3.152/ggcode-desktop_1.3.152_windows_arm64.msi + InstallerSha256: E7CA90BF79E8E1209D33CD24FDD1EFCB278AB40157E619E940F5675DDB7737E8 + ProductCode: '{D70A9CCC-2EF9-4BB2-B507-BB1A14F30ED1}' + AppsAndFeaturesEntries: + - DisplayName: GGCode Desktop + Publisher: GG AI Studio + ProductCode: '{D70A9CCC-2EF9-4BB2-B507-BB1A14F30ED1}' + UpgradeCode: '{D4E5F6A7-B8C9-0123-CDEF-345678901234}' + InstallerType: wix +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-07-14 diff --git a/manifests/g/gg/ai/ggcode-desktop/1.3.152/gg.ai.ggcode-desktop.locale.en-US.yaml b/manifests/g/gg/ai/ggcode-desktop/1.3.152/gg.ai.ggcode-desktop.locale.en-US.yaml new file mode 100644 index 000000000000..c2edf217dfcd --- /dev/null +++ b/manifests/g/gg/ai/ggcode-desktop/1.3.152/gg.ai.ggcode-desktop.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: gg.ai.ggcode-desktop +PackageVersion: 1.3.152 +PackageLocale: en-US +Publisher: GG AI Studio +PublisherUrl: https://github.com/topcheer +PublisherSupportUrl: https://github.com/topcheer/ggcode/issues +Author: GG AI Studio +PackageName: GGCode Desktop +PackageUrl: https://github.com/topcheer/ggcode +License: MIT +LicenseUrl: https://github.com/topcheer/ggcode/blob/v1.3.52/LICENSE +ShortDescription: AI coding agent with a native desktop interface. +Description: |- + GGCode Desktop is a native graphical interface for ggcode, an AI coding agent + focused on code understanding, repo editing, command execution, MCP tools, + resumable sessions, and coding workflows. +Tags: +- ai +- coding +- desktop +- developer-tools +- mcp +- terminal +ReleaseNotesUrl: https://github.com/topcheer/ggcode/releases/tag/v1.3.152 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/topcheer/ggcode/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/gg/ai/ggcode-desktop/1.3.152/gg.ai.ggcode-desktop.yaml b/manifests/g/gg/ai/ggcode-desktop/1.3.152/gg.ai.ggcode-desktop.yaml new file mode 100644 index 000000000000..27fa9eb7ead0 --- /dev/null +++ b/manifests/g/gg/ai/ggcode-desktop/1.3.152/gg.ai.ggcode-desktop.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: gg.ai.ggcode-desktop +PackageVersion: 1.3.152 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/goldjg/cARL/0.4.2/goldjg.cARL.installer.yaml b/manifests/g/goldjg/cARL/0.4.2/goldjg.cARL.installer.yaml new file mode 100644 index 000000000000..5bd0a0b5268f --- /dev/null +++ b/manifests/g/goldjg/cARL/0.4.2/goldjg.cARL.installer.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: goldjg.cARL +PackageVersion: 0.4.2 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: carl.exe + PortableCommandAlias: carl +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/goldjg/cARL/releases/download/v0.4.2/carl_0.4.2_windows_amd64.zip + InstallerSha256: C4CDAFE2026E7647E5E80C6CF0D2A644B298D05E6093506ED00B0C1C4E33A692 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/goldjg/cARL/0.4.2/goldjg.cARL.locale.en-GB.yaml b/manifests/g/goldjg/cARL/0.4.2/goldjg.cARL.locale.en-GB.yaml new file mode 100644 index 000000000000..9953b54ca736 --- /dev/null +++ b/manifests/g/goldjg/cARL/0.4.2/goldjg.cARL.locale.en-GB.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: goldjg.cARL +PackageVersion: 0.4.2 +PackageLocale: en-GB +Publisher: goldjg +PackageName: cARL +License: MIT +ShortDescription: Cognitive Agent Runtime Layer for AI coding agents +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/goldjg/cARL/0.4.2/goldjg.cARL.yaml b/manifests/g/goldjg/cARL/0.4.2/goldjg.cARL.yaml new file mode 100644 index 000000000000..bcc92aca12ff --- /dev/null +++ b/manifests/g/goldjg/cARL/0.4.2/goldjg.cARL.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: goldjg.cARL +PackageVersion: 0.4.2 +DefaultLocale: en-GB +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/h/HaiYing/AionUi/2.1.35/HaiYing.AionUi.installer.yaml b/manifests/h/HaiYing/AionUi/2.1.35/HaiYing.AionUi.installer.yaml new file mode 100644 index 000000000000..bed7a9d80694 --- /dev/null +++ b/manifests/h/HaiYing/AionUi/2.1.35/HaiYing.AionUi.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: HaiYing.AionUi +PackageVersion: 2.1.35 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v2.1.35/AionUi-2.1.35-win-x64.exe + InstallerSha256: 8C40D53EDABE5F0BDDD258B461B0096AF3A8C125DF338DCA5DA05EEB10486560 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v2.1.35/AionUi-2.1.35-win-x64.exe + InstallerSha256: 8C40D53EDABE5F0BDDD258B461B0096AF3A8C125DF338DCA5DA05EEB10486560 + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v2.1.35/AionUi-2.1.35-win-arm64.exe + InstallerSha256: FC468220CB05F3C1A49090A49224E6AA4354F3E51ACC1C155422E37326F65F21 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/h/HaiYing/AionUi/2.1.35/HaiYing.AionUi.locale.en-US.yaml b/manifests/h/HaiYing/AionUi/2.1.35/HaiYing.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..13159418d7e1 --- /dev/null +++ b/manifests/h/HaiYing/AionUi/2.1.35/HaiYing.AionUi.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: HaiYing.AionUi +PackageVersion: 2.1.35 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2026 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + Highlights + This is a stability release that hardens sending, startup, packaging, and message rendering. + Bug Fixes + - Sending to a busy conversation is handled gracefully across all runtimes: instead of surfacing a raw conflict error, AionUi now recognizes "conversation is busy" responses and recovers the queued message properly. + - Fixed messages being truncated when the text happened to mention the internal file-attachment marker — attachment parsing now only applies to actual attachment blocks on your own messages. + - If assistant data fails to load at startup, AionUi now treats it as a repairable local-data issue and guides you through recovery instead of failing with a generic error. + - Bug reports filed from a team page now include the team context, making team issues easier to diagnose. + - The installer verifies bundled resources against a manifest, catching corrupted or incomplete installs before they cause runtime errors. + What's Changed + - fix(startup): classify assistant bootstrap failures as local data issues by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/3583 + - chore(docs): update WeChat group QR code to wx-16 by @IceyLiu in https://github.com/iOfficeAI/AionUi/pull/3588 + - fix(packaging): verify bundled resources from manifest by @piorpua in https://github.com/iOfficeAI/AionUi/pull/3587 + - fix(feedback): attach team route context by @jiahe0510 in https://github.com/iOfficeAI/AionUi/pull/3586 + - fix(conversation): handle busy send conflicts by @piorpua in https://github.com/iOfficeAI/AionUi/pull/3589 + - fix(renderer): restrict message file marker parsing by @piorpua in https://github.com/iOfficeAI/AionUi/pull/3590 + - chore: bump version to 2.1.35 by @piorpua in https://github.com/iOfficeAI/AionUi/pull/3591 + New Contributors + - @jiahe0510 made their first contribution in https://github.com/iOfficeAI/AionUi/pull/3586 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v2.1.34...v2.1.35 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v2.1.35 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/h/HaiYing/AionUi/2.1.35/HaiYing.AionUi.locale.zh-CN.yaml b/manifests/h/HaiYing/AionUi/2.1.35/HaiYing.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..f2442e14a332 --- /dev/null +++ b/manifests/h/HaiYing/AionUi/2.1.35/HaiYing.AionUi.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: HaiYing.AionUi +PackageVersion: 2.1.35 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/h/HaiYing/AionUi/2.1.35/HaiYing.AionUi.yaml b/manifests/h/HaiYing/AionUi/2.1.35/HaiYing.AionUi.yaml new file mode 100644 index 000000000000..61ae8250d518 --- /dev/null +++ b/manifests/h/HaiYing/AionUi/2.1.35/HaiYing.AionUi.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: HaiYing.AionUi +PackageVersion: 2.1.35 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/h/HishamMedhat/PortPeek/1.0.0/HishamMedhat.PortPeek.installer.yaml b/manifests/h/HishamMedhat/PortPeek/1.0.0/HishamMedhat.PortPeek.installer.yaml new file mode 100644 index 000000000000..c1508c7807c8 --- /dev/null +++ b/manifests/h/HishamMedhat/PortPeek/1.0.0/HishamMedhat.PortPeek.installer.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: HishamMedhat.PortPeek +PackageVersion: 1.0.0 +InstallerType: nullsoft +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/HishamM1/portpeek/releases/download/v1.0.0/PortPeek_1.0.0_x64-setup.exe + InstallerSha256: 35A736FEC6035E5F50109BE54C4501397D5E106011E622A963777A899A356482 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/h/HishamMedhat/PortPeek/1.0.0/HishamMedhat.PortPeek.locale.en-US.yaml b/manifests/h/HishamMedhat/PortPeek/1.0.0/HishamMedhat.PortPeek.locale.en-US.yaml new file mode 100644 index 000000000000..fcb7445d4d7d --- /dev/null +++ b/manifests/h/HishamMedhat/PortPeek/1.0.0/HishamMedhat.PortPeek.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: HishamMedhat.PortPeek +PackageVersion: 1.0.0 +PackageLocale: en-US +Publisher: Hisham Medhat +PublisherUrl: https://github.com/HishamM1 +PublisherSupportUrl: https://github.com/HishamM1/portpeek/issues +PrivacyUrl: https://github.com/HishamM1/portpeek#privacy +Author: Hisham Medhat +PackageName: PortPeek +PackageUrl: https://github.com/HishamM1/portpeek +License: MIT License +LicenseUrl: https://github.com/HishamM1/portpeek/blob/main/LICENSE +Copyright: Copyright (c) 2026 Hisham Medhat +CopyrightUrl: https://github.com/HishamM1/portpeek/blob/main/LICENSE +ShortDescription: See what's listening on your local ports, and free a busy one in a click. +Description: A small Windows tray app that lists every process listening on a local port — with its │ +Moniker: portpeek +Tags: +- port +- ports +- localhost +- netstat +- tray +- devtools +- developer-tools +ReleaseNotes: https://github.com/HishamM1/portpeek/releases/tag/v1.0.0 +ReleaseNotesUrl: https://github.com/HishamM1/portpeek/releases/tag/v1.0.0 +InstallationNotes: PortPeek runs in the system tray — click the tray icon to open it. +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/h/HishamMedhat/PortPeek/1.0.0/HishamMedhat.PortPeek.yaml b/manifests/h/HishamMedhat/PortPeek/1.0.0/HishamMedhat.PortPeek.yaml new file mode 100644 index 000000000000..176a157cd7b7 --- /dev/null +++ b/manifests/h/HishamMedhat/PortPeek/1.0.0/HishamMedhat.PortPeek.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: HishamMedhat.PortPeek +PackageVersion: 1.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/h/Huawei/Cangjie/1.0.3/Huawei.Cangjie.installer.yaml b/manifests/h/Huawei/Cangjie/1.0.3/Huawei.Cangjie.installer.yaml deleted file mode 100644 index 1cd5d1155d81..000000000000 --- a/manifests/h/Huawei/Cangjie/1.0.3/Huawei.Cangjie.installer.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 v2.5.0 $debug=NVS1.CRLF.7-5-4.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Huawei.Cangjie -PackageVersion: 1.0.3 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -Commands: -- cjc -- cjc-frontend -- cjcov -- cjdb -- cjfmt -- cjlint -- cjpm -- cjtrace-recover -ProductCode: Cangjie -ReleaseDate: 2025-10-10 -Installers: -- Architecture: x64 - InstallerUrl: https://cangjie-lang.cn/v1/files/auth/downLoad?nsId=142267&fileName=cangjie-sdk-windows-x64-1.0.3.exe&objectKey=68e724d33115f673ef1280f8 - InstallerSha256: CB0F95223C04865FD47DB35EE0AAFF6CDD577772A2F8C9D43FC7816E0B20A9EE -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/h/Huawei/Cangjie/1.0.3/Huawei.Cangjie.locale.en-US.yaml b/manifests/h/Huawei/Cangjie/1.0.3/Huawei.Cangjie.locale.en-US.yaml deleted file mode 100644 index fae1d923759d..000000000000 --- a/manifests/h/Huawei/Cangjie/1.0.3/Huawei.Cangjie.locale.en-US.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Created with YamlCreate.ps1 v2.5.0 $debug=NVS1.CRLF.7-5-4.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Huawei.Cangjie -PackageVersion: 1.0.3 -PackageLocale: en-US -# Publisher: -PublisherUrl: https://cangjie-lang.cn/en -# PublisherSupportUrl: -# PrivacyUrl: -# Author: -# PackageName: -PackageUrl: https://cangjie-lang.cn/en/download -# License: -# LicenseUrl: -# Copyright: -# CopyrightUrl: -ShortDescription: A new-generation programming language oriented to full-scenario intelligence -Description: The Cangjie programming language is a new-generation programming language oriented to full-scenario intelligence. It features native intelligence, being naturally suitable for all scenarios, high performance and strong security. It is mainly applied in scenarios such as native applications and service applications of HarmonyOS NEXT, providing developers with a good programming experience. -# Moniker: -Tags: -- harmonyos -- language -- oniro -- openharmony -- programming -- programming-language -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: -Documentations: -- DocumentLabel: Docs - DocumentUrl: https://cangjie-lang.cn/en/docs -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/h/Huawei/Cangjie/1.0.3/Huawei.Cangjie.locale.zh-CN.yaml b/manifests/h/Huawei/Cangjie/1.0.3/Huawei.Cangjie.locale.zh-CN.yaml deleted file mode 100644 index e8abffa8fd95..000000000000 --- a/manifests/h/Huawei/Cangjie/1.0.3/Huawei.Cangjie.locale.zh-CN.yaml +++ /dev/null @@ -1,99 +0,0 @@ -# Created with YamlCreate.ps1 v2.5.0 $debug=NVS1.CRLF.7-5-4.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Huawei.Cangjie -PackageVersion: 1.0.3 -PackageLocale: zh-CN -Publisher: Huawei Technologies Co., Ltd. -PublisherUrl: https://cangjie-lang.cn/ -# PublisherSupportUrl: -PrivacyUrl: https://cangjie-lang.cn/pages/privacy -Author: Huawei Technologies Co., Ltd. -PackageName: Cangjie -PackageUrl: https://cangjie-lang.cn/download -License: Apache-2.0 -LicenseUrl: https://gitcode.com/Cangjie/cangjie_build/blob/dev/LICENSE -Copyright: Copyright Huawei Technologies Co., Ltd. 2022-2025. All rights reserved. -# CopyrightUrl: -ShortDescription: 面向全场景智能的新一代编程语言 -Description: 仓颉编程语言是一款面向全场景智能的新一代编程语言,主打原生智能化、天生全场景、高性能、强安全。主要应用于鸿蒙原生应用及服务应用等场景中,为开发者提供良好的编程体验。 -# Moniker: -Tags: -- harmonyos -- oniro -- openharmony -- 编程 -- 编程语言 -- 语言 -- 鸿蒙 -ReleaseNotes: |- - 0. 版本介绍 - 本版本为 Cangjie 语言 LTS 1.0.0 版本的更新版本(LTS 版本定义及维护周期详见仓颉社区版本生命周期管理规范,版本号为 Cangjie 1.0.3,主要解决部分发现的 Bug,以及对某些功能进行优化。版本包含了仓颉应用开发必须的能力,包括编译器,运行时,标准库,和工具链。欢迎各位开发者使用,如有任何问题,欢迎在 Cangjie 社区提出 issue,我们会第一时间处理。以下介绍本版本相比 LTS 1.0.3 版本的更新。 - 1. 语言特性 - 修复部分问题,无特性新增。 - 2. 编译器 - 修复部分问题,无特性新增。 - 3. 运行时 - 修复部分问题,无特性新增。 - 4. 标准库 - 修复部分问题,无特性新增。 - 5. 工具链 - 1 IDE 插件 - 修复部分问题,无特性新增。 - 2 cjpm - 修复部分问题,无特性新增。 - 3 cjdb - 修复部分问题,无特性新增。 - 4 cjfmt - 修复部分问题,无特性新增。 - 5 cjlint - 无变化。 - 6 cjcov - 无变化。 - 7 cjprof - 无变化。 - 8 cjtrace-recover - 无变化。 - 6. 修复问题 - -【issue-2170】运行时崩溃"Thread 'out' catched unhandled SIGSEGV (Segmentation fault) from managed frame." - -【issue-2336】【LSP】cjpm.toml 中 target 的顺序会导致 vscode 插件无法识别 stdx。 - -【issue-2167】windows 环境下,Directory.isEmpty()执行报错。 - -【issue-2328】【文档】编译器@!格式的注解没有文档说明。 - -【issue-2308】【LSP】【代码高亮】多行原始字符串高亮效果不正确。 - -【issue-2359】编译时发生 Internal Compiler Error, Error Code:13。 - -【issue-2322】项目 cjpm build 编译报错 command failed。 - -【issue-2337】cjpm build 时误报 unused import。 - -【issue-2352】AST 的 visitor 无法访问 block 节点。 - -【issue-2266】if 表达式中存在流程控制语句,并且表达式的类型为?String,if 表达式的计算结果有误。 - -【issue-2255】泛型推断错误。 - -【issue-2319】报错信息英文描述不准确。 - -【issue-2351】【文档】文档没有提到抽象函数 open 函数 接口实例函数可以是泛型函数。 - -【issue-1866】项目运行 cjpm build 报错 semantic error。 - -【issue-2307】多层级继承+扩展接口时发生 ICE。 - -【issue-2280】使用 @Derive 宏后 VSCode 插件误标错。 - -【issue-2190】代码编译时 sema 应该报错,实际程序无响应。 - -【issue-2323】代码符合 cjlint G.VAR.02 规则,但是出现误报,预期结果应该是无告警。 - -【非社区问题】cjpm test --coverage 崩溃,出现内部编译器错误:Broken llvm ir! (存储值类型与指针操作数类型不匹配!)。 - -【非社区问题】编译 cjpm 工程发生 ICE。 - -【非社区问题】【stdx】【http】偶现 stream 计数错误和 http 写超时。 - 7. 遗留问题 - windows 下编译 cjpm test 报错 - 【问题现象】windows 下编译 cjpm test,提示找不到 openssl 相关的动态库错误。 【规避措施】手动增加 cjpm test 时的-L 地址。 - 使用 exe 安装导致系统中原本的环境变量 path 丢失 - 【问题现象】当环境变量 path 长度(添加前长度,或者加上 Cangjie 环境变量后)超过 1024 位时,使用 exe 安装会导致系统中原本的环境变量 path 丢失。 【规避措施】使用 zip 安装包进行安装并手动配置环境变量。 - 8. 文档变更说明 - 开发指南 - - 注解>自定义注解”中补充预留语法“@!Annotation”说明。 - - 补充“包和模块管理”章节。 - 标准库 API - - 无变化。 - 工具指南 - - 无变化。 -ReleaseNotesUrl: https://docs.cangjie-lang.cn/docs/1.0.3/release_notes.html -# PurchaseUrl: -# InstallationNotes: -Documentations: -- DocumentLabel: 文档 - DocumentUrl: https://cangjie-lang.cn/docs -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/h/Huawei/Cangjie/1.0.3/Huawei.Cangjie.yaml b/manifests/h/Huawei/Cangjie/1.0.3/Huawei.Cangjie.yaml deleted file mode 100644 index 925e9aa5eeca..000000000000 --- a/manifests/h/Huawei/Cangjie/1.0.3/Huawei.Cangjie.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.5.0 $debug=NVS1.CRLF.7-5-4.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: Huawei.Cangjie -PackageVersion: 1.0.3 -DefaultLocale: zh-CN -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/h/Huawei/Cangjie/1.0.4/Huawei.Cangjie.installer.yaml b/manifests/h/Huawei/Cangjie/1.0.4/Huawei.Cangjie.installer.yaml deleted file mode 100644 index e0f618be1551..000000000000 --- a/manifests/h/Huawei/Cangjie/1.0.4/Huawei.Cangjie.installer.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Huawei.Cangjie -PackageVersion: 1.0.4 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -Commands: -- cjc -- cjc-frontend -- cjcov -- cjdb -- cjfmt -- cjlint -- cjpm -- cjtrace-recover -ProductCode: Cangjie -ReleaseDate: 2025-11-10 -Installers: -- Architecture: x64 - InstallerUrl: https://cangjie-lang.cn/v1/files/auth/downLoad?nsId=142267&fileName=cangjie-sdk-windows-x64-1.0.4.exe&objectKey=691154a3a1061e7e7ef142dc - InstallerSha256: 4384273A237484DD1EE0E93332A54BBB69FDE924E609129220FF66829E04A7AD -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/h/Huawei/Cangjie/1.0.4/Huawei.Cangjie.locale.en-US.yaml b/manifests/h/Huawei/Cangjie/1.0.4/Huawei.Cangjie.locale.en-US.yaml deleted file mode 100644 index 7c5df7ce2c69..000000000000 --- a/manifests/h/Huawei/Cangjie/1.0.4/Huawei.Cangjie.locale.en-US.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Huawei.Cangjie -PackageVersion: 1.0.4 -PackageLocale: en-US -PublisherUrl: https://cangjie-lang.cn/en -PackageUrl: https://cangjie-lang.cn/en/download -ShortDescription: A new-generation programming language oriented to full-scenario intelligence -Description: The Cangjie programming language is a new-generation programming language oriented to full-scenario intelligence. It features native intelligence, being naturally suitable for all scenarios, high performance and strong security. It is mainly applied in scenarios such as native applications and service applications of HarmonyOS NEXT, providing developers with a good programming experience. -Tags: -- harmonyos -- language -- oniro -- openharmony -- programming -- programming-language -Documentations: -- DocumentLabel: Docs - DocumentUrl: https://cangjie-lang.cn/en/docs -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/h/Huawei/Cangjie/1.0.4/Huawei.Cangjie.locale.zh-CN.yaml b/manifests/h/Huawei/Cangjie/1.0.4/Huawei.Cangjie.locale.zh-CN.yaml deleted file mode 100644 index d7ffa1938349..000000000000 --- a/manifests/h/Huawei/Cangjie/1.0.4/Huawei.Cangjie.locale.zh-CN.yaml +++ /dev/null @@ -1,134 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Huawei.Cangjie -PackageVersion: 1.0.4 -PackageLocale: zh-CN -Publisher: Huawei Technologies Co., Ltd. -PublisherUrl: https://cangjie-lang.cn/ -PrivacyUrl: https://cangjie-lang.cn/pages/privacy -Author: Huawei Technologies Co., Ltd. -PackageName: Cangjie -PackageUrl: https://cangjie-lang.cn/download -License: Apache-2.0 -LicenseUrl: https://gitcode.com/Cangjie/cangjie_build/blob/dev/LICENSE -Copyright: Copyright Huawei Technologies Co., Ltd. 2022-2025. All rights reserved. -ShortDescription: 面向全场景智能的新一代编程语言 -Description: 仓颉编程语言是一款面向全场景智能的新一代编程语言,主打原生智能化、天生全场景、高性能、强安全。主要应用于鸿蒙原生应用及服务应用等场景中,为开发者提供良好的编程体验。 -Tags: -- harmonyos -- oniro -- openharmony -- 编程 -- 编程语言 -- 语言 -- 鸿蒙 -ReleaseNotes: |- - 0. 版本介绍 - 本版本为 Cangjie 语言 LTS 1.0.0 版本的更新版本(LTS 版本定义及维护周期详见仓颉社区版本生命周期管理规范,版本号为 Cangjie 1.0.4,主要解决部分发现的 Bug,以及对某些功能进行优化。版本包含了仓颉应用开发必须的能力,包括编译器,运行时,标准库,和工具链。欢迎各位开发者使用,如有任何问题,欢迎在 Cangjie 社区提出 issue,我们会第一时间处理。以下介绍本版本相比 LTS 1.0.3 版本的更新。 - 1. 语言特性 - 无特性新增。 - 2. 编译器 - 本版本仅修复问题,无特性新增。修复问题如下: - -【issue-105】let 变量在 lambda 中被赋值了两次,未编译报错 - -【issue-2591】当同一个包不同文件中存在同名私有函数时,无法编译 - -【issue-2533】项目 cjpm build -g 编译失败,cjpm test --coverage 编译崩溃,报错 Error Code: 13 - -【issue-2565】【缺陷】Option 作为返回值时,当 T 为 Array,ArrayList 时,多层 API 调用时返回值不对 - 3. 运行时 - 本版本仅修复问题,无特性新增。修复问题如下: - -【issue-2395】新项目 MacOS26 报 SG_READ_ONLY 缺失,修复 MacOS26 编译失败问题 - -【issue-2649】在运行 GC 场景中,长时间压测情况下,偶现 cangjie 进程卡死现象问题解决 - 4. 标准库 - 本版本仅修复问题,无特性新增。修复问题如下: - -【issue-2242】修复在 Timer 的定时任务中调用 cancel()时后不能以预期的方式取消的问题 - -【issue-2408】修复 TreeMap 和 TreeSet 中出现同一 key 值多次出现的问题 - 5. 工具链 - 1 IDE 插件 - 本版本仅修复问题,无特性新增。修复问题如下: - -【issue-1961】codeArts 编译错误信息的中文内容显示为 - -【issue-6】codeArts 编译错误信息的中文内容显示为乱码 - 2 cjpm - 新增支持 lto-combined 功能,详情请参见工具指南。 - 本版本修复问题如下: - -【issue-2373】优化 cjpm init 报错信息 - -【issue-2650】tr5-2 交叉编译场景下,cjpm 宏包依赖出现错误 - 3 cjdb - 无变化。 - 4 cjfmt - 本版本仅修复问题,无特性新增:修复问题如下: - -【issue-2385】cjfmt 文档缺少 cangjie-format.toml 配置的介绍 - 5 cjlint - 本版本仅修复问题,无特性新增:修复问题如下: - -【issue-2433】cjlint 的 G.VAR.02 规则误报,预期无警告 - 6 cjcov - 无变化。 - 7 cjprof - 无变化。 - 8 cjtrace-recover - 无变化。 - 6. 遗留问题 - windows 下编译 cjpm test 报错 - 【问题现象】windows 下编译 cjpm test,提示找不到 openssl 相关的动态库错误。 - 【规避措施】手动增加 cjpm test 时的-L 地址。 - 在 lanbda body 体内修改 lambda 参数,编译崩溃 - 【问题现象】在 lambda body 体内误修改 lambda 参数,可能会导致 ICE,ErrorCode 为 12。 - 【规避措施】不要错误的在 lambda body 体内修改 lambda 参数 - 调用被扩展的接口函数的部分场景会导致运行时崩溃的问题 - 【问题现象】当存在一个泛型类 A 扩展了某个泛型接口 I,且存在另一个非泛型类 B 继承了实例化版本的类 A,将 B 的实例赋值给 I 类型变量且调用接口 I 函数时可能导致运行时崩溃。 样例: - interface I { - func foo() {} - } - - open class A {} - extend A <: I {} - - class B <: A {} - - main() { - let i: I = B() - i.foo() // 此处调用会发生运行阶段崩溃 - return 0 - } - 【规避措施】 方案一:若类 A 定义在本包,可以不使用扩展,通过 A 直接继承接口 I 以规避该问题。 规避样例: - interface I { - func foo() {} - } - open class A <: I {} // 使 A 继承 I - open class B <: A {} - - main() { - let i: I = B() - i.foo() - return 0 - } - 方案二:若类 A 是导入自其它包,可以将类 B 定义为泛型类以规避该问题。 规避样例: - import pkgA.A - - interface I { - func foo() {} - } - extend A <: I {} - - open class B <: A {} // 将类 B 定义为泛型类 - - main() { - let i: I = B() - i.foo() - return 0 - } - 7. 文档变更说明 - 开发指南 - - 程序结构章节新增说明:函数和 lambda 中的静态成员变量赋值,编译器无法判断函数或者 lambda 是否会被执行,因此采用保守策略,即编译报错。 - - 普通 try 表达式中新增说明:当在 try 块中可能发生内存溢出错误时,应避免在 catch 或 finally 块中执行任何内存分配操作,以免再次触发溢出并导致未定义行为。一旦检测到内存溢出,建议在 catch 块中立即终止程序(例如调用 exit 函数),以确保系统稳定性并防止进一步错误。 - - 新增编译选项--compile-as-exe 相关内容。 - 标准库 API - - 无变化。 - 工具指南 - - 格式化工具 cjfmt 章节新增说明:CANGJIE_HOME 环境下的默认格式化工具配置文件路径为 CANGJIE_HOME/tools/config。 - - cjpm 工具中的模块配置文件说明增加支持工程级 LTO 相关说明。 -ReleaseNotesUrl: https://cangjie-lang.cn/docs?url=/1.0.4/release_notes.html -Documentations: -- DocumentLabel: 文档 - DocumentUrl: https://cangjie-lang.cn/docs -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/h/hidecode365/WinLauncher/0.1.0/hidecode365.WinLauncher.installer.yaml b/manifests/h/hidecode365/WinLauncher/0.1.0/hidecode365.WinLauncher.installer.yaml new file mode 100644 index 000000000000..4d757bbeb5cb --- /dev/null +++ b/manifests/h/hidecode365/WinLauncher/0.1.0/hidecode365.WinLauncher.installer.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: hidecode365.WinLauncher +PackageVersion: 0.1.0 +InstallerType: nullsoft +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/hidecode365/win-launcher/releases/download/v0.1.0/win-launcher_0.1.0_x64-setup.exe + InstallerSha256: A8E0DEAD98E589B24AEA36B007F5263C353F7698D1CF771FA96A8D65E311BE0C +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/h/hidecode365/WinLauncher/0.1.0/hidecode365.WinLauncher.locale.en-US.yaml b/manifests/h/hidecode365/WinLauncher/0.1.0/hidecode365.WinLauncher.locale.en-US.yaml new file mode 100644 index 000000000000..84687820f1f3 --- /dev/null +++ b/manifests/h/hidecode365/WinLauncher/0.1.0/hidecode365.WinLauncher.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: hidecode365.WinLauncher +PackageVersion: 0.1.0 +PackageLocale: en-US +Publisher: hidecode365 +PackageName: WinLauncher +License: MIT +ShortDescription: A fast, keyboard-driven launcher for Windows 11 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/h/hidecode365/WinLauncher/0.1.0/hidecode365.WinLauncher.yaml b/manifests/h/hidecode365/WinLauncher/0.1.0/hidecode365.WinLauncher.yaml new file mode 100644 index 000000000000..ee6932ecc978 --- /dev/null +++ b/manifests/h/hidecode365/WinLauncher/0.1.0/hidecode365.WinLauncher.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: hidecode365.WinLauncher +PackageVersion: 0.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/IObit/MalwareFighter/13.3.0.1652/IObit.MalwareFighter.installer.yaml b/manifests/i/IObit/MalwareFighter/13.3.0.1652/IObit.MalwareFighter.installer.yaml deleted file mode 100644 index 97cbaa708295..000000000000 --- a/manifests/i/IObit/MalwareFighter/13.3.0.1652/IObit.MalwareFighter.installer.yaml +++ /dev/null @@ -1,26 +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: IObit.MalwareFighter -PackageVersion: 13.3.0.1652 -InstallerLocale: en-US -InstallerType: inno -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: install -ProductCode: IObit Malware Fighter_is1 -AppsAndFeaturesEntries: -- DisplayName: IObit Malware Fighter 12 - Publisher: IObit - ProductCode: IObit Malware Fighter_is1 -ElevationRequirement: elevatesSelf -Installers: -- Architecture: x86 - InstallerUrl: https://cdn.iobit.com/dl/iobit_malware_fighter_setup.exe - InstallerSha256: 3F2DFD017B9ED7D0B2D2E837309C98EC2E99EB92886E6F996C21D0A3B760AF5B -ManifestType: installer -ManifestVersion: 1.12.0 -ReleaseDate: 2026-05-11 diff --git a/manifests/i/IObit/MalwareFighter/13.3.0.1652/IObit.MalwareFighter.locale.en-US.yaml b/manifests/i/IObit/MalwareFighter/13.3.0.1652/IObit.MalwareFighter.locale.en-US.yaml deleted file mode 100644 index edc1b36ed0d6..000000000000 --- a/manifests/i/IObit/MalwareFighter/13.3.0.1652/IObit.MalwareFighter.locale.en-US.yaml +++ /dev/null @@ -1,34 +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: IObit.MalwareFighter -PackageVersion: 13.3.0.1652 -PackageLocale: en-US -Publisher: IObit -PublisherUrl: https://www.iobit.com/ -PublisherSupportUrl: https://www.iobit.com/onlinefeedback.php -PrivacyUrl: https://www.iobit.com/privacy.php -PackageName: IObit Malware Fighter -PackageUrl: https://www.iobit.com/malware-fighter.php -License: Freeware -LicenseUrl: https://www.iobit.com/eula.php -Copyright: © IObit. All rights reserved. -CopyrightUrl: https://www.iobit.com/legal.php -ShortDescription: All-Around PC Protection with Powerful Anti-Malware and the Strongest Privacy Solutions -Description: IObit Malware Fighter is a comprehensive security tool designed to protect your PC from various threats, including viruses, ransomware, spyware, Trojans, adware, and worms. It offers real-time protection, automatically scanning and preventing malware before it can harm your system. The software also includes privacy protection features, such as a safe box for sensitive data and browser protection to block phishing websites and annoying ads. -Tags: -- antimalware -- protection -- security -ReleaseNotes: |- - v13.3 (2026-05-11) - - Refined the Force Delete feature to enhance the program's security defense. - - Resolved loading errors of the Threat Detection Module under specific conditions. - - Optimized the database update process for smoother and more reliable updates. - - Expanded database to remove the latest threats including Trojan.barys, Trojan.flyagent, and Virus.sality. - - Fixed known bugs. -Documentations: -- DocumentLabel: FAQ - DocumentUrl: https://www.iobit.com/faq.php -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/i/IObit/MalwareFighter/13.4.0.1669/IObit.MalwareFighter.installer.yaml b/manifests/i/IObit/MalwareFighter/13.4.0.1669/IObit.MalwareFighter.installer.yaml index bb0da02cd4dd..5ce52b609f7c 100644 --- a/manifests/i/IObit/MalwareFighter/13.4.0.1669/IObit.MalwareFighter.installer.yaml +++ b/manifests/i/IObit/MalwareFighter/13.4.0.1669/IObit.MalwareFighter.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2026/Jul/14 +# Created using wingetcreate 1.12.8.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: IObit.MalwareFighter @@ -23,4 +23,4 @@ Installers: InstallerSha256: 103D3264DE73ABDC2C33A4F15AB0C291AA0D8B7318B861CB63CEBC630AEF6B30 ManifestType: installer ManifestVersion: 1.12.0 -ReleaseDate: 2026-05-11 +ReleaseDate: 2026-07-13 diff --git a/manifests/i/IObit/MalwareFighter/13.4.0.1669/IObit.MalwareFighter.locale.en-US.yaml b/manifests/i/IObit/MalwareFighter/13.4.0.1669/IObit.MalwareFighter.locale.en-US.yaml index b96b8160a612..b8c3f2b0c74e 100644 --- a/manifests/i/IObit/MalwareFighter/13.4.0.1669/IObit.MalwareFighter.locale.en-US.yaml +++ b/manifests/i/IObit/MalwareFighter/13.4.0.1669/IObit.MalwareFighter.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2026/Jul/14 +# Created using wingetcreate 1.12.8.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: IObit.MalwareFighter @@ -21,12 +21,12 @@ Tags: - protection - security ReleaseNotes: |- - v13.3 (2026-05-11) - - Refined the Force Delete feature to enhance the program's security defense. - - Resolved loading errors of the Threat Detection Module under specific conditions. - - Optimized the database update process for smoother and more reliable updates. - - Expanded database to remove the latest threats including Trojan.barys, Trojan.flyagent, and Virus.sality. - - Fixed known bugs. + v13.4 (2026-07-13) + - Strengthened real-time protection to detect potential threats more effectively. + - Optimized Download Protection for faster detection of downloaded files. + - Upgraded Anti-Tracking for more comprehensive removal. + - Expanded database to remove the latest threats, including Trojan.Tinba, Trojan.Shelsy, and Trojan.JUKO. + - Additional minor improvements. Documentations: - DocumentLabel: FAQ DocumentUrl: https://www.iobit.com/faq.php diff --git a/manifests/i/IObit/MalwareFighter/13.4.0.1669/IObit.MalwareFighter.yaml b/manifests/i/IObit/MalwareFighter/13.4.0.1669/IObit.MalwareFighter.yaml index 688f6012059a..d982a294f1c1 100644 --- a/manifests/i/IObit/MalwareFighter/13.4.0.1669/IObit.MalwareFighter.yaml +++ b/manifests/i/IObit/MalwareFighter/13.4.0.1669/IObit.MalwareFighter.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2026/Jul/14 +# Created using wingetcreate 1.12.8.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: IObit.MalwareFighter diff --git a/manifests/i/Intel/IntelDriverAndSupportAssistant/26.2.0.7/Intel.IntelDriverAndSupportAssistant.installer.yaml b/manifests/i/Intel/IntelDriverAndSupportAssistant/26.2.0.7/Intel.IntelDriverAndSupportAssistant.installer.yaml new file mode 100644 index 000000000000..eb1d3eec4cf0 --- /dev/null +++ b/manifests/i/Intel/IntelDriverAndSupportAssistant/26.2.0.7/Intel.IntelDriverAndSupportAssistant.installer.yaml @@ -0,0 +1,20 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Intel.IntelDriverAndSupportAssistant +PackageVersion: 26.2.0.7 +InstallerType: burn +Scope: machine +InstallerSwitches: + Custom: /q +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2026-07-14 +AppsAndFeaturesEntries: +- ProductCode: '{039CECE9-B083-4114-AFC7-5CDBA4321241}' + UpgradeCode: '{E220B4DB-8AE5-49E2-90EA-BF47D7E813D0}' +Installers: +- Architecture: x86 + InstallerUrl: https://dsadata.intel.com/installer + InstallerSha256: 2FD7C01B67F8EF9D7C7687591CB651C80542F9C62FE9D41C3FAE359C532BD59D +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/Intel/IntelDriverAndSupportAssistant/26.2.0.7/Intel.IntelDriverAndSupportAssistant.locale.en-US.yaml b/manifests/i/Intel/IntelDriverAndSupportAssistant/26.2.0.7/Intel.IntelDriverAndSupportAssistant.locale.en-US.yaml new file mode 100644 index 000000000000..861e356e6800 --- /dev/null +++ b/manifests/i/Intel/IntelDriverAndSupportAssistant/26.2.0.7/Intel.IntelDriverAndSupportAssistant.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Intel.IntelDriverAndSupportAssistant +PackageVersion: 26.2.0.7 +PackageLocale: en-US +Publisher: Intel +Author: Intel +PackageName: Intel® Driver & Support Assistant +License: Proprietary +Copyright: Copyright (c) Intel Corporation +ShortDescription: The Intel® Driver & Support Assistant enables you to scan computing devices for the latest drivers available from Intel. +Moniker: intel-dsa +Tags: +- assistant +- driver +- support +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/Intel/IntelDriverAndSupportAssistant/26.2.0.7/Intel.IntelDriverAndSupportAssistant.yaml b/manifests/i/Intel/IntelDriverAndSupportAssistant/26.2.0.7/Intel.IntelDriverAndSupportAssistant.yaml new file mode 100644 index 000000000000..afa9a00c8afc --- /dev/null +++ b/manifests/i/Intel/IntelDriverAndSupportAssistant/26.2.0.7/Intel.IntelDriverAndSupportAssistant.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: Intel.IntelDriverAndSupportAssistant +PackageVersion: 26.2.0.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/iFlytek/iFlyRecSI/5.1.5/iFlytek.iFlyRecSI.installer.yaml b/manifests/i/iFlytek/iFlyRecSI/5.1.5/iFlytek.iFlyRecSI.installer.yaml new file mode 100644 index 000000000000..3f79462982bc --- /dev/null +++ b/manifests/i/iFlytek/iFlyRecSI/5.1.5/iFlytek.iFlyRecSI.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: iFlytek.iFlyRecSI +PackageVersion: 5.1.5 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ProductCode: 28570c1d-6efa-5206-8e03-947b069cec3c +ReleaseDate: 2026-07-13 +Installers: +- Architecture: x64 + InstallerUrl: https://tongchuan.iflyrec.com/download/tjhz/windows/TJTC001/tjtc_TJTC001_setup_5.1.5_2442.exe + InstallerSha256: 57E47CE49BA8AF5900F421B23574D39DB9EA1ED25ACE9FC1D7D2177EB9426D4B +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/iFlytek/iFlyRecSI/5.1.5/iFlytek.iFlyRecSI.locale.en-US.yaml b/manifests/i/iFlytek/iFlyRecSI/5.1.5/iFlytek.iFlyRecSI.locale.en-US.yaml new file mode 100644 index 000000000000..1cf330944183 --- /dev/null +++ b/manifests/i/iFlytek/iFlyRecSI/5.1.5/iFlytek.iFlyRecSI.locale.en-US.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: iFlytek.iFlyRecSI +PackageVersion: 5.1.5 +PackageLocale: en-US +Author: Anhui Iflyrec Co., Ltd. +License: Proprietary +ShortDescription: An AI simultaneous interpretation software integrated with multilingual real-time transcription and translation, subtitle display, human assistance and live meeting. +Description: Based on iFlytek's cutting-edge intelligent speech and language technology, iFlyRec Simultaneous Interpretation provides multilingual simultaneous interpretation and various customized services for all scenarios. It offers personal floating subtitles and enterprise simultaneous interpretation services for scenarios such as conferences, exhibitions, office entertainment and live streaming to construct a multi-level ecosystem for iFlyRec Simultaneous Interpretation. It provides real-time transcription and translation between multiple languages, as well as various simultaneous interpretation services such as on-screen display, customized conferences, multilingual human simultaneous interpretation, multilingual speech synthesis, conference shorthand, conference live streaming and conference recording sharing through simultaneous interpretation products. iFlyRec Simultaneous Interpretation features efficiency, professionalism, and intelligence and has successfully provided services for thousands of different kinds of conferences, press conferences, and professional academic conferences all over the world. +Tags: +- caption +- chinese +- conference +- english +- meeting +- simultaneous-interpreting +- subtitle +- translate +- translation +- translator +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/i/iFlytek/iFlyRecSI/5.1.5/iFlytek.iFlyRecSI.locale.zh-CN.yaml b/manifests/i/iFlytek/iFlyRecSI/5.1.5/iFlytek.iFlyRecSI.locale.zh-CN.yaml new file mode 100644 index 000000000000..6cb51d839cc6 --- /dev/null +++ b/manifests/i/iFlytek/iFlyRecSI/5.1.5/iFlytek.iFlyRecSI.locale.zh-CN.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: iFlytek.iFlyRecSI +PackageVersion: 5.1.5 +PackageLocale: zh-CN +Publisher: 安徽听见科技有限公司 +PublisherUrl: https://www.iflyrec.com/ +PublisherSupportUrl: https://tongchuan.iflyrec.com/index/helpcenter +PrivacyUrl: https://static.iflyrec.com/v1/iflyrectjpt/publicread01/privacyPolicy/huizhan/productPrivacyPolicy.html +Author: 安徽听见科技有限公司 +PackageName: 讯飞听见同传 +PackageUrl: https://tongchuan.iflyrec.com/ +License: 专有软件 +LicenseUrl: https://static.iflyrec.com/v1/iflyrectjpt/publicread01/privacyPolicy/huizhan/userPrivacyPolicy.html +Copyright: Copyright © 2026 安徽听见科技有限公司 +CopyrightUrl: https://www.iflyrec.com/html/helpCenter/legal.html +ShortDescription: 多语种实时转写翻译、字幕投屏、人工保障、会议直播一体化 AI 同传软件 +Description: 讯飞听见同传,基于科大讯飞世界前沿水平的智能语音和语言技术,提供全场景多语种同传及各类定制服务。面向会议、展会、办公娱乐、直播看剧等场景提供个人悬浮字幕、企业同传服务,构建讯飞听见同传的多层次生态的服务体系,通过同传产品提供多国语种的实时转写翻译及上屏展示、会议定制、多国语种人工同传、多国语种语音合成、会议速记、会议直播和会议记录分享等一体化同传服务。讯飞听见同传以高效、专业、智能为特色,已成功为国内外万余场大中型会议、发布会、专业学术会议提供服务。 +Tags: +- 中文 +- 会议 +- 同传 +- 同声传译 +- 字幕 +- 汉语 +- 翻译 +- 英文 +- 英语 +PurchaseUrl: https://tongchuan.iflyrec.com/index/recharge/refill-card-list +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/h/Huawei/Cangjie/1.0.4/Huawei.Cangjie.yaml b/manifests/i/iFlytek/iFlyRecSI/5.1.5/iFlytek.iFlyRecSI.yaml similarity index 58% rename from manifests/h/Huawei/Cangjie/1.0.4/Huawei.Cangjie.yaml rename to manifests/i/iFlytek/iFlyRecSI/5.1.5/iFlytek.iFlyRecSI.yaml index d913b696da1a..60f3e6145b30 100644 --- a/manifests/h/Huawei/Cangjie/1.0.4/Huawei.Cangjie.yaml +++ b/manifests/i/iFlytek/iFlyRecSI/5.1.5/iFlytek.iFlyRecSI.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 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json -PackageIdentifier: Huawei.Cangjie -PackageVersion: 1.0.4 +PackageIdentifier: iFlytek.iFlyRecSI +PackageVersion: 5.1.5 DefaultLocale: zh-CN ManifestType: version -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 diff --git a/manifests/i/icsharpcode/ILSpy/10.1.1.8388/icsharpcode.ILSpy.installer.yaml b/manifests/i/icsharpcode/ILSpy/10.1.1.8388/icsharpcode.ILSpy.installer.yaml new file mode 100644 index 000000000000..eeb3518e947d --- /dev/null +++ b/manifests/i/icsharpcode/ILSpy/10.1.1.8388/icsharpcode.ILSpy.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: icsharpcode.ILSpy +PackageVersion: 10.1.1.8388 +InstallerType: wix +InstallerSwitches: + InstallLocation: INSTALLDIR="" +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.10 +ProductCode: '{A12FDAB1-731B-4A98-9749-D4816E96A270}' +ReleaseDate: 2026-07-14 +AppsAndFeaturesEntries: +- ProductCode: '{A12FDAB1-731B-4A98-9749-D4816E96A270}' + UpgradeCode: '{A12FDAB1-731B-4A98-9749-D481CE8692AB}' +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%/Programs/ILSpy' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/icsharpcode/ILSpy/releases/download/v10.1.1/ILSpy_Installer_10.1.1.8388-x64.msi + InstallerSha256: AF66FA7C15CCC7B6DA45218502A55E741DDF99F40F376D52EEFFFBAF469A58E7 +- Architecture: arm64 + InstallerUrl: https://github.com/icsharpcode/ILSpy/releases/download/v10.1.1/ILSpy_Installer_10.1.1.8388-arm64.msi + InstallerSha256: F999F98FEFD98EA0ADF3FC3781D7143A1F2C518748274D3A775FDE3D65CA6BA2 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/icsharpcode/ILSpy/10.1.1.8388/icsharpcode.ILSpy.locale.en-US.yaml b/manifests/i/icsharpcode/ILSpy/10.1.1.8388/icsharpcode.ILSpy.locale.en-US.yaml new file mode 100644 index 000000000000..ff5c7ff19f26 --- /dev/null +++ b/manifests/i/icsharpcode/ILSpy/10.1.1.8388/icsharpcode.ILSpy.locale.en-US.yaml @@ -0,0 +1,40 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: icsharpcode.ILSpy +PackageVersion: 10.1.1.8388 +PackageLocale: en-US +Publisher: ICSharpCode Team +PublisherUrl: https://github.com/icsharpcode/ILSpy +PublisherSupportUrl: https://github.com/icsharpcode/ILSpy/issues +PackageName: ILSpy +PackageUrl: https://github.com/icsharpcode/ILSpy +License: MIT +LicenseUrl: https://github.com/icsharpcode/ILSpy/blob/HEAD/LICENSE +Copyright: Copyright 2011-2023 AlphaSierraPapa for the ILSpy team +CopyrightUrl: https://github.com/icsharpcode/ILSpy/blob/master/doc/ILSpyAboutPage.txt +ShortDescription: Cross-Platform .NET assembly browser and decompiler. +Tags: +- c-sharp +- decompile +- decompiler +- decompiler-engine +- dotnet +- dotnetcore +- ilspy +- mono +- pdb +- unity +ReleaseNotes: |- + Warning + We DO NOT own the domain ilspy[.]org See #3709 + Download ILSpy only from GitHub Releases! + This release is based on .NET 10.0. Please make sure that you have it installed on your machine beforehand. + Bug Fixes + - Fix: Stop the assembly list from disposing removed assemblies +ReleaseNotesUrl: https://github.com/icsharpcode/ILSpy/releases/tag/v10.1.1 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/icsharpcode/ILSpy/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/icsharpcode/ILSpy/10.1.1.8388/icsharpcode.ILSpy.yaml b/manifests/i/icsharpcode/ILSpy/10.1.1.8388/icsharpcode.ILSpy.yaml new file mode 100644 index 000000000000..0c05b72f087c --- /dev/null +++ b/manifests/i/icsharpcode/ILSpy/10.1.1.8388/icsharpcode.ILSpy.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: icsharpcode.ILSpy +PackageVersion: 10.1.1.8388 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/j/JRSoftware/InnoSetup/7/7.0.2/JRSoftware.InnoSetup.7.installer.yaml b/manifests/j/JRSoftware/InnoSetup/7/7.0.2/JRSoftware.InnoSetup.7.installer.yaml new file mode 100644 index 000000000000..5db940427595 --- /dev/null +++ b/manifests/j/JRSoftware/InnoSetup/7/7.0.2/JRSoftware.InnoSetup.7.installer.yaml @@ -0,0 +1,51 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json +PackageIdentifier: JRSoftware.InnoSetup.7 +PackageVersion: 7.0.2 +MinimumOSVersion: 6.1.0.0 +InstallerType: inno +FileExtensions: +- iss +RepairBehavior: installer +Installers: +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/jrsoftware/issrc/releases/download/is-7_0_2/innosetup-7.0.2-x64.exe + InstallerSha256: 5ad54ca3def786f8f4212552e54cc6d8d61329e2d24a1cfee0571d42c2684ff1 + InstallerSwitches: + Custom: /ALLUSERS + ProductCode: Inno Setup 7_is1 + AppsAndFeaturesEntries: + - DisplayName: Inno Setup version 7.0.2 + ProductCode: Inno Setup 7_is1 +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/jrsoftware/issrc/releases/download/is-7_0_2/innosetup-7.0.2-x64.exe + InstallerSha256: 5ad54ca3def786f8f4212552e54cc6d8d61329e2d24a1cfee0571d42c2684ff1 + InstallerSwitches: + Custom: /CURRENTUSER + ProductCode: Inno Setup 7_is1 + AppsAndFeaturesEntries: + - DisplayName: Inno Setup version 7.0.2 + ProductCode: Inno Setup 7_is1 +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/jrsoftware/issrc/releases/download/is-7_0_2/innosetup-7.0.2-x86.exe + InstallerSha256: 2b8734490a83f1ed074022b85d46c5ce9c3e2fbe9b63a45c28a74b478ac3a94f + InstallerSwitches: + Custom: /ALLUSERS + ProductCode: Inno Setup 7 (32-bit)_is1 + AppsAndFeaturesEntries: + - DisplayName: Inno Setup version 7.0.2 (32-bit) + ProductCode: Inno Setup 7 (32-bit)_is1 +- Architecture: x86 + Scope: user + InstallerUrl: https://github.com/jrsoftware/issrc/releases/download/is-7_0_2/innosetup-7.0.2-x86.exe + InstallerSha256: 2b8734490a83f1ed074022b85d46c5ce9c3e2fbe9b63a45c28a74b478ac3a94f + InstallerSwitches: + Custom: /CURRENTUSER + ProductCode: Inno Setup 7 (32-bit)_is1 + AppsAndFeaturesEntries: + - DisplayName: Inno Setup version 7.0.2 (32-bit) + ProductCode: Inno Setup 7 (32-bit)_is1 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/j/JRSoftware/InnoSetup/7/7.0.2/JRSoftware.InnoSetup.7.locale.en-US.yaml b/manifests/j/JRSoftware/InnoSetup/7/7.0.2/JRSoftware.InnoSetup.7.locale.en-US.yaml new file mode 100644 index 000000000000..32e19e02c644 --- /dev/null +++ b/manifests/j/JRSoftware/InnoSetup/7/7.0.2/JRSoftware.InnoSetup.7.locale.en-US.yaml @@ -0,0 +1,34 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json +PackageIdentifier: JRSoftware.InnoSetup.7 +PackageVersion: 7.0.2 +PackageLocale: en-US +Publisher: jrsoftware.org +# PublisherUrl: +# PublisherSupportUrl: +PrivacyUrl: https://jrsoftware.org/isorder-privacy.php +Author: Jordan Russell and Martijn Laan +PackageName: Inno Setup 7 +PackageUrl: https://jrsoftware.org/isinfo.php +License: Inno Setup License +LicenseUrl: https://jrsoftware.org/files/is/license.txt +Copyright: |- + Copyright (C) 1997-2026 Jordan Russell. All rights reserved. + Portions Copyright (C) 2000-2026 Martijn Laan. All rights reserved. +# CopyrightUrl: +ShortDescription: > + Inno Setup is an open-source installation builder for Windows applications. + Since its introduction in 1997, Inno Setup has been trusted by developers and + organizations of all sizes to reliably deploy software to millions of PCs + worldwide. +# Description: +# Moniker: +Tags: +- inno +- setup +# ReleaseNotes: +ReleaseNotesUrl: https://jrsoftware.org/files/is7-whatsnew.htm#:~:text=7.0.2 +PurchaseUrl: https://jrsoftware.org/isorder.php +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/j/JRSoftware/InnoSetup/7/7.0.2/JRSoftware.InnoSetup.7.yaml b/manifests/j/JRSoftware/InnoSetup/7/7.0.2/JRSoftware.InnoSetup.7.yaml new file mode 100644 index 000000000000..39b91ceaa780 --- /dev/null +++ b/manifests/j/JRSoftware/InnoSetup/7/7.0.2/JRSoftware.InnoSetup.7.yaml @@ -0,0 +1,6 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json +PackageIdentifier: JRSoftware.InnoSetup.7 +PackageVersion: 7.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/29.28.0/JanDeDobbeleer.OhMyPosh.installer.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/29.28.0/JanDeDobbeleer.OhMyPosh.installer.yaml new file mode 100644 index 000000000000..1dcc09de7f40 --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/29.28.0/JanDeDobbeleer.OhMyPosh.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: JanDeDobbeleer.OhMyPosh +PackageVersion: 29.28.0 +InstallerLocale: en-US +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.17134.0 +InstallerType: msix +PackageFamilyName: ohmyposh.cli_96v55e8n804z4 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v29.28.0/install-x64.msix + InstallerSha256: 45B4639A5AE6F64A4A1A60C95F43DFCF39B2163BD0F3E52480007DF718F304CC + SignatureSha256: E7AF4768C5B18179FD186B9E73DFA91A1783C7DAE5B5D1D14DF3C7CD7E6194C8 +- Architecture: arm64 + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v29.28.0/install-arm64.msix + InstallerSha256: 90B3EF104EB340078BCF3E537EA026D3A028B34876E906BA5C6C6B8A11E80D12 + SignatureSha256: C8AFC52B546E53EB03E6AC906717696D24F5C8D59D226902AD8BA648C286999E +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-07-14 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/29.28.0/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/29.28.0/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml new file mode 100644 index 000000000000..e92cc443613c --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/29.28.0/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml @@ -0,0 +1,35 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 29.28.0 +PackageLocale: en-US +Publisher: Jan De Dobbeleer +PublisherUrl: https://github.com/JanDeDobbeleer +PublisherSupportUrl: https://github.com/JanDeDobbeleer/oh-my-posh/issues +Author: Jan De Dobbeleer +PackageName: Oh My Posh +PackageUrl: https://ohmyposh.dev/ +License: MIT +LicenseUrl: https://github.com/JanDeDobbeleer/oh-my-posh/raw/main/COPYING +ShortDescription: Prompt theme engine for any shell +Tags: +- bash +- cmd +- git +- nerd-fonts +- nushell +- powershell +- starship +- tooltips +- console +- command-line +- shell +- wsl +- developer-tools +- utilities +- cli +- terminal +ReleaseNotesUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/tag/v29.28.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/29.28.0/JanDeDobbeleer.OhMyPosh.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/29.28.0/JanDeDobbeleer.OhMyPosh.yaml new file mode 100644 index 000000000000..a33c14c34c5b --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/29.28.0/JanDeDobbeleer.OhMyPosh.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: JanDeDobbeleer.OhMyPosh +PackageVersion: 29.28.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/k/KDE/Chessament/0.1/KDE.Chessament.installer.yaml b/manifests/k/KDE/Chessament/0.1/KDE.Chessament.installer.yaml index 81101a3c5e5e..d18a3e62d8f5 100644 --- a/manifests/k/KDE/Chessament/0.1/KDE.Chessament.installer.yaml +++ b/manifests/k/KDE/Chessament/0.1/KDE.Chessament.installer.yaml @@ -9,14 +9,14 @@ ProductCode: Chessament Installers: - Architecture: x64 Scope: user - InstallerUrl: https://cdn.kde.org/ci-builds/games/chessament/master/windows/chessament-master-738-windows-cl-msvc2022-x86_64.exe - InstallerSha256: 9C78A583A16000D54EE1518BA209193ACE023198C8DD6DF71919024205238A31 + InstallerUrl: https://cdn.kde.org/ci-builds/games/chessament/master/windows/chessament-master-741-windows-cl-msvc2022-x86_64.exe + InstallerSha256: 37ED48D8D6AF96153FFD279157CAA33063994C48D6DF78C89963EFAA726ECD48 InstallerSwitches: Custom: /CurrentUser - Architecture: x64 Scope: machine - InstallerUrl: https://cdn.kde.org/ci-builds/games/chessament/master/windows/chessament-master-738-windows-cl-msvc2022-x86_64.exe - InstallerSha256: 9C78A583A16000D54EE1518BA209193ACE023198C8DD6DF71919024205238A31 + InstallerUrl: https://cdn.kde.org/ci-builds/games/chessament/master/windows/chessament-master-741-windows-cl-msvc2022-x86_64.exe + InstallerSha256: 37ED48D8D6AF96153FFD279157CAA33063994C48D6DF78C89963EFAA726ECD48 InstallerSwitches: Custom: /AllUsers ManifestType: installer diff --git a/manifests/k/KristianKiel/BILLEVO/3.7.4/KristianKiel.BILLEVO.installer.yaml b/manifests/k/KristianKiel/BILLEVO/3.7.4/KristianKiel.BILLEVO.installer.yaml new file mode 100644 index 000000000000..4a9e2934aa60 --- /dev/null +++ b/manifests/k/KristianKiel/BILLEVO/3.7.4/KristianKiel.BILLEVO.installer.yaml @@ -0,0 +1,27 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json +# Installer manifest — nutzt den offiziellen signierten NSIS-Installer von downloads.billevo.de. +# ProductCode = electron-builder-NSIS-GUID (UUIDv5 aus appId com.kristiankiel.billevo, +# versionsstabil; verifiziert gegen den Uninstall-Registry-Key einer echten Installation). +PackageIdentifier: KristianKiel.BILLEVO +PackageVersion: 3.7.4 +InstallerLocale: de-DE +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: nullsoft +Scope: user +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://downloads.billevo.de/BILLEVO%20Setup%203.7.4.exe + InstallerSha256: C8F379D82BE8A0AB92C83D47931D67FBD83301171A78D17A5681FC923CE8ABDE + AppsAndFeaturesEntries: + - DisplayName: BILLEVO 3.7.4 + Publisher: Kristian Kiel + DisplayVersion: 3.7.4 + ProductCode: f21919ef-aa62-5ff6-8048-cb7bc3b49f57 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/k/KristianKiel/BILLEVO/3.7.4/KristianKiel.BILLEVO.locale.de-DE.yaml b/manifests/k/KristianKiel/BILLEVO/3.7.4/KristianKiel.BILLEVO.locale.de-DE.yaml new file mode 100644 index 000000000000..226f4b551668 --- /dev/null +++ b/manifests/k/KristianKiel/BILLEVO/3.7.4/KristianKiel.BILLEVO.locale.de-DE.yaml @@ -0,0 +1,43 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json +PackageIdentifier: KristianKiel.BILLEVO +PackageVersion: 3.7.4 +PackageLocale: de-DE +Publisher: Kristian Kiel +PublisherUrl: https://billevo.de +PublisherSupportUrl: https://billevo.de/support +PrivacyUrl: https://billevo.de/datenschutz +Author: Kristian Kiel +PackageName: BILLEVO +PackageUrl: https://billevo.de +License: Proprietär (Einmalkauf, 30 Tage kostenlos testen) +LicenseUrl: https://billevo.de/agb +Copyright: © 2026 Kristian Kiel +ShortDescription: Lokale Rechnungssoftware für Selbstständige und kleine Betriebe – E-Rechnung, Angebote, Mahnungen, DATEV-Export. +Description: |- + BILLEVO ist eine lokale Desktop-Rechnungssoftware für Windows – gemacht für Selbstständige, + Freiberufler und kleine Unternehmen in Deutschland. + + - E-Rechnung nach ZUGFeRD, Factur-X und XRechnung – das Original-XML bleibt jederzeit sichtbar. + - Rechnungen, Angebote, Lieferscheine, wiederkehrende & Sammelrechnungen. + - Kunden, Artikel mit einfachem Bestand, Ausgaben & Eingangsrechnungen, Zeiterfassung. + - DATEV-Export (SKR03/SKR04) für die saubere Übergabe an den Steuerberater. + - GoBD-orientiert, Kleinunternehmer-§19-tauglich, IBAN-Prüfung, Mahnwesen. + - Lokal-first: deine Daten liegen auf deinem Gerät, kein Cloud-Zwang. + + Einmalkauf statt Abo: 30 Tage kostenlos testen, danach mit einem Lizenzschlüssel von + billevo.de aktivieren. Keine laufenden Gebühren. +Moniker: billevo +Tags: +- buchhaltung +- datev +- e-rechnung +- gobd +- kleinunternehmer +- rechnung +- rechnungsprogramm +- rechnungssoftware +- xrechnung +- zugferd +ReleaseNotesUrl: https://billevo.de/updates +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/k/KristianKiel/BILLEVO/3.7.4/KristianKiel.BILLEVO.locale.en-US.yaml b/manifests/k/KristianKiel/BILLEVO/3.7.4/KristianKiel.BILLEVO.locale.en-US.yaml new file mode 100644 index 000000000000..360ecf84eb0f --- /dev/null +++ b/manifests/k/KristianKiel/BILLEVO/3.7.4/KristianKiel.BILLEVO.locale.en-US.yaml @@ -0,0 +1,40 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.6.0.schema.json +PackageIdentifier: KristianKiel.BILLEVO +PackageVersion: 3.7.4 +PackageLocale: en-US +Publisher: Kristian Kiel +PublisherUrl: https://billevo.de +PublisherSupportUrl: https://billevo.de/support +PrivacyUrl: https://billevo.de/datenschutz +Author: Kristian Kiel +PackageName: BILLEVO +PackageUrl: https://billevo.de +License: Proprietary (one-time purchase, 30-day free trial) +LicenseUrl: https://billevo.de/agb +Copyright: © 2026 Kristian Kiel +ShortDescription: Local invoicing software for freelancers and small businesses – e-invoicing, quotes, dunning, DATEV export. +Description: |- + BILLEVO is local desktop invoicing software for Windows – built for freelancers and small + businesses in Germany. + + - E-invoicing in ZUGFeRD, Factur-X and XRechnung – the underlying XML stays visible. + - Invoices, quotes, delivery notes, recurring & collective invoices. + - Customers, items with simple inventory, expenses & incoming invoices, time tracking. + - DATEV export (SKR03/SKR04) for a clean handover to your tax advisor. + - GoBD-oriented, small-business §19-ready, IBAN check, dunning. + - Local-first: your data stays on your device, no forced cloud. + + One-time purchase instead of a subscription: try free for 30 days, then activate with a + license key from billevo.de. No recurring fees. +Tags: +- accounting +- datev +- e-invoicing +- freelancer +- invoice +- invoicing +- xrechnung +- zugferd +ReleaseNotesUrl: https://billevo.de/updates +ManifestType: locale +ManifestVersion: 1.6.0 diff --git a/manifests/k/KristianKiel/BILLEVO/3.7.4/KristianKiel.BILLEVO.yaml b/manifests/k/KristianKiel/BILLEVO/3.7.4/KristianKiel.BILLEVO.yaml new file mode 100644 index 000000000000..aa90fab69b74 --- /dev/null +++ b/manifests/k/KristianKiel/BILLEVO/3.7.4/KristianKiel.BILLEVO.yaml @@ -0,0 +1,9 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json +# Version manifest — BILLEVO im Windows Package Manager (winget). +# Submission: PR nach microsoft/winget-pkgs unter +# manifests/k/KristianKiel/BILLEVO/3.7.4/ (alle 4 Dateien dieses Ordners) +PackageIdentifier: KristianKiel.BILLEVO +PackageVersion: 3.7.4 +DefaultLocale: de-DE +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/k/kulkamKakarot/DriveLens/1.0.0/kulkamKakarot.DriveLens.installer.yaml b/manifests/k/kulkamKakarot/DriveLens/1.0.0/kulkamKakarot.DriveLens.installer.yaml new file mode 100644 index 000000000000..f073ca13f60a --- /dev/null +++ b/manifests/k/kulkamKakarot/DriveLens/1.0.0/kulkamKakarot.DriveLens.installer.yaml @@ -0,0 +1,11 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json +PackageIdentifier: kulkamKakarot.DriveLens +PackageVersion: 1.0.0 +InstallerType: nullsoft +Scope: user +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/kulkamKakarot/drivelens/releases/download/v1.0.0/DriveLens.Setup.1.0.0.exe + InstallerSha256: 6CE6DAEE533F7B0078C7917450A5AD3D46181C9A1DE104BBC4244BD22763DD37 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/k/kulkamKakarot/DriveLens/1.0.0/kulkamKakarot.DriveLens.locale.en-US.yaml b/manifests/k/kulkamKakarot/DriveLens/1.0.0/kulkamKakarot.DriveLens.locale.en-US.yaml new file mode 100644 index 000000000000..f21ccfe8703f --- /dev/null +++ b/manifests/k/kulkamKakarot/DriveLens/1.0.0/kulkamKakarot.DriveLens.locale.en-US.yaml @@ -0,0 +1,24 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json +PackageIdentifier: kulkamKakarot.DriveLens +PackageVersion: 1.0.0 +PackageLocale: en-US +Publisher: kulkamKakarot +PublisherUrl: https://github.com/kulkamKakarot +PublisherSupportUrl: https://github.com/kulkamKakarot/drivelens/issues +PackageName: DriveLens +PackageUrl: https://github.com/kulkamKakarot/drivelens +License: MIT +LicenseUrl: https://github.com/kulkamKakarot/drivelens/blob/main/LICENSE +ShortDescription: Visual disk-space analyzer for Windows with an interactive treemap and safe Recycle Bin cleanup. +Description: DriveLens scans any drive or folder and shows exactly what is taking up space in an interactive, color-coded treemap. Browse folders sorted biggest-first, find the 100 largest files on a drive, and clean up safely - deleted items always go to the Recycle Bin, never permanently removed. No network access, no telemetry. Free and open source. +Moniker: drivelens +Tags: +- cleanup +- disk-analyzer +- disk-space +- disk-usage +- open-source +- treemap +ReleaseNotesUrl: https://github.com/kulkamKakarot/drivelens/releases/tag/v1.0.0 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/k/kulkamKakarot/DriveLens/1.0.0/kulkamKakarot.DriveLens.yaml b/manifests/k/kulkamKakarot/DriveLens/1.0.0/kulkamKakarot.DriveLens.yaml new file mode 100644 index 000000000000..b5ff8ca50791 --- /dev/null +++ b/manifests/k/kulkamKakarot/DriveLens/1.0.0/kulkamKakarot.DriveLens.yaml @@ -0,0 +1,6 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json +PackageIdentifier: kulkamKakarot.DriveLens +PackageVersion: 1.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/l/Laker/EasyPostman/6.0.11/Laker.EasyPostman.installer.yaml b/manifests/l/Laker/EasyPostman/6.0.11/Laker.EasyPostman.installer.yaml new file mode 100644 index 000000000000..476c211d59ad --- /dev/null +++ b/manifests/l/Laker/EasyPostman/6.0.11/Laker.EasyPostman.installer.yaml @@ -0,0 +1,29 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json +PackageIdentifier: Laker.EasyPostman +PackageVersion: 6.0.11 +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART + SilentWithProgress: /SP- /SILENT /SUPPRESSMSGBOXES /NORESTART +UpgradeBehavior: install +ProductCode: 8B9C5D6E-7F8A-9B0C-1D2E-3F4A5B6C7D8E_is1 +ReleaseDate: 2026-07-01 +ElevationRequirement: elevatesSelf +AppsAndFeaturesEntries: +- ProductCode: 8B9C5D6E-7F8A-9B0C-1D2E-3F4A5B6C7D8E_is1 + DisplayName: EasyPostman + Publisher: Laker + DisplayVersion: 6.0.11 +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\EasyPostman' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/lakernote/EasyPostman/releases/download/v6.0.11/EasyPostman-6.0.11-windows-x64.exe + InstallerSha256: EBB81E7F5C98FF7063B5BEB79F34F8AF55EFAB20FBE7294278EC8EF3A0D7B45B +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/l/Laker/EasyPostman/6.0.11/Laker.EasyPostman.locale.en-US.yaml b/manifests/l/Laker/EasyPostman/6.0.11/Laker.EasyPostman.locale.en-US.yaml new file mode 100644 index 000000000000..6ba7c4dc5a52 --- /dev/null +++ b/manifests/l/Laker/EasyPostman/6.0.11/Laker.EasyPostman.locale.en-US.yaml @@ -0,0 +1,28 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +PackageIdentifier: Laker.EasyPostman +PackageVersion: 6.0.11 +PackageLocale: en-US +Publisher: Laker +PublisherUrl: https://github.com/lakernote +PublisherSupportUrl: https://github.com/lakernote/EasyPostman/issues +PackageName: EasyPostman +PackageUrl: https://github.com/lakernote/EasyPostman +License: Apache-2.0 +LicenseUrl: https://github.com/lakernote/EasyPostman/blob/master/LICENSE +ShortDescription: An open-source Postman-style API client and JMeter-style load testing desktop app. +Description: EasyPostman combines a Postman-style API debugging workspace with JMeter-style performance testing in one local-first desktop app. +Moniker: easypostman +Tags: +- api +- api-client +- http +- jmeter +- postman +- rest +- testing +ReleaseNotesUrl: https://github.com/lakernote/EasyPostman/releases/tag/v6.0.11 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://github.com/lakernote/EasyPostman/blob/master/docs/FEATURES.md +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/EXE/139.0.7258.155/Google.Chrome.EXE.yaml b/manifests/l/Laker/EasyPostman/6.0.11/Laker.EasyPostman.yaml similarity index 56% rename from manifests/g/Google/Chrome/EXE/139.0.7258.155/Google.Chrome.EXE.yaml rename to manifests/l/Laker/EasyPostman/6.0.11/Laker.EasyPostman.yaml index c2652e900a79..26b1a7b35191 100644 --- a/manifests/g/Google/Chrome/EXE/139.0.7258.155/Google.Chrome.EXE.yaml +++ b/manifests/l/Laker/EasyPostman/6.0.11/Laker.EasyPostman.yaml @@ -1,8 +1,6 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.EXE -PackageVersion: 139.0.7258.155 -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: Laker.EasyPostman +PackageVersion: 6.0.11 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/l/LetsConnect/Client/4.6/LetsConnect.Client.installer.yaml b/manifests/l/LetsConnect/Client/4.6/LetsConnect.Client.installer.yaml index 7e8ba12e09e7..3b8c5095281a 100644 --- a/manifests/l/LetsConnect/Client/4.6/LetsConnect.Client.installer.yaml +++ b/manifests/l/LetsConnect/Client/4.6/LetsConnect.Client.installer.yaml @@ -6,7 +6,7 @@ PackageVersion: 4.6 Installers: - Architecture: arm64 InstallerType: wix - InstallerUrl: https://codeberg.org/eduVPN/windows/releases/download/4.6/LetsConnectClient_4.6_ARM64.msi + InstallerUrl: https://app.letsconnect-vpn.org/windows/LetsConnectClient_4.6_ARM64.msi InstallerSha256: 62b80d424ed9712fea163fb97222437d3c47047ac1c0e956b659a0c7c82ac5da AppsAndFeaturesEntries: - ProductCode: '{5F0A9747-2CD2-4E1C-9E21-E426DBF988A8}' @@ -14,7 +14,7 @@ Installers: UpgradeCode: '{090C24F6-1F11-4DB8-9338-68E3526139F5}' - Architecture: x64 InstallerType: wix - InstallerUrl: https://codeberg.org/eduVPN/windows/releases/download/4.6/LetsConnectClient_4.6_x64.msi + InstallerUrl: https://app.letsconnect-vpn.org/windows/LetsConnectClient_4.6_x64.msi InstallerSha256: 541d88c31219d224668c50faf30621530b2dfcd7a808af983cd687e48bddfcd2 AppsAndFeaturesEntries: - ProductCode: '{5F0A9747-2CD2-4E1C-9E11-E426DBF988A8}' @@ -22,7 +22,7 @@ Installers: UpgradeCode: '{090C24F6-1F11-4DB8-9338-68E3526139F5}' - Architecture: x86 InstallerType: wix - InstallerUrl: https://codeberg.org/eduVPN/windows/releases/download/4.6/LetsConnectClient_4.6_x86.msi + InstallerUrl: https://app.letsconnect-vpn.org/windows/LetsConnectClient_4.6_x86.msi InstallerSha256: a313501f29ea3c33bcb99170d5b01a0d9c1588e53fa08a85c916afe8baaf0506 AppsAndFeaturesEntries: - ProductCode: '{5F0A9747-2CD2-4E1C-9E01-E426DBF988A8}' diff --git a/manifests/l/LieberLieber/LemonTree/Connect/Codebeamer/4.0.1/LieberLieber.LemonTree.Connect.Codebeamer.installer.yaml b/manifests/l/LieberLieber/LemonTree/Connect/Codebeamer/4.0.1/LieberLieber.LemonTree.Connect.Codebeamer.installer.yaml new file mode 100644 index 000000000000..c4fdea5d5b93 --- /dev/null +++ b/manifests/l/LieberLieber/LemonTree/Connect/Codebeamer/4.0.1/LieberLieber.LemonTree.Connect.Codebeamer.installer.yaml @@ -0,0 +1,17 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: LieberLieber.LemonTree.Connect.Codebeamer +PackageVersion: 4.0.1 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: wix +NestedInstallerFiles: +- RelativeFilePath: LemonTree.Connect.Codebeamer.msi +ProductCode: '{178CE6E1-CDDD-440B-A504-B355D3976035}' +Installers: +- Architecture: x64 + InstallerUrl: https://customers.lieberlieber.com/Downloads/LemonTree/Connect/Codebeamer/LemonTree.Connect.Codebeamer_4.0.1.zip + InstallerSha256: 9FB78726481F8E1F43AB9DEB01A39096C792480853B9C789CFDA972F43BC8297 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/l/LieberLieber/LemonTree/Connect/Codebeamer/4.0.1/LieberLieber.LemonTree.Connect.Codebeamer.locale.en-US.yaml b/manifests/l/LieberLieber/LemonTree/Connect/Codebeamer/4.0.1/LieberLieber.LemonTree.Connect.Codebeamer.locale.en-US.yaml new file mode 100644 index 000000000000..f8073bf28d11 --- /dev/null +++ b/manifests/l/LieberLieber/LemonTree/Connect/Codebeamer/4.0.1/LieberLieber.LemonTree.Connect.Codebeamer.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: LieberLieber.LemonTree.Connect.Codebeamer +PackageVersion: 4.0.1 +PackageLocale: en-US +Publisher: LieberLieber Software GmbH +PackageName: LemonTree.Connect.Codebeamer +License: Proprietary +ShortDescription: LemonTree.Connect for Codebeamer enables advanced integration for Systems Engineering by connecting Enterprise Architect and Codebeamer. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/l/LieberLieber/LemonTree/Connect/Codebeamer/4.0.1/LieberLieber.LemonTree.Connect.Codebeamer.yaml b/manifests/l/LieberLieber/LemonTree/Connect/Codebeamer/4.0.1/LieberLieber.LemonTree.Connect.Codebeamer.yaml new file mode 100644 index 000000000000..0efb70d65ca8 --- /dev/null +++ b/manifests/l/LieberLieber/LemonTree/Connect/Codebeamer/4.0.1/LieberLieber.LemonTree.Connect.Codebeamer.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: LieberLieber.LemonTree.Connect.Codebeamer +PackageVersion: 4.0.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/l/Loom/Loom/0.361.0/Loom.Loom.installer.yaml b/manifests/l/Loom/Loom/0.361.0/Loom.Loom.installer.yaml new file mode 100644 index 000000000000..7690ccbc440b --- /dev/null +++ b/manifests/l/Loom/Loom/0.361.0/Loom.Loom.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: Loom.Loom +PackageVersion: 0.361.0 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- loomdesktop +ProductCode: 3643b966-bc28-5bc8-95ff-3d47d66438db +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + InstallerUrl: https://cdn.loom.com/desktop-packages/Loom%20Setup%200.361.0.exe + InstallerSha256: 4D69FC928243EDA9291A833ED886877A4941E98D3EF387ECA7126E97CF601D36 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/Loom/Loom/0.361.0/Loom.Loom.locale.en-US.yaml b/manifests/l/Loom/Loom/0.361.0/Loom.Loom.locale.en-US.yaml new file mode 100644 index 000000000000..439e3dfb237a --- /dev/null +++ b/manifests/l/Loom/Loom/0.361.0/Loom.Loom.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: Loom.Loom +PackageVersion: 0.361.0 +PackageLocale: en-US +Publisher: Loom, Inc. +PublisherUrl: https://www.loom.com/ +PublisherSupportUrl: https://support.loom.com/ +PrivacyUrl: https://www.loom.com/privacy-policy +Author: Loom, Inc. +PackageName: Loom +PackageUrl: https://www.loom.com/ +License: Proprietary +LicenseUrl: https://www.loom.com/terms +Copyright: © 2026, Loom, Inc. All Rights Reserved. +ShortDescription: Loom is a video messaging tool that helps you get your message across through instantly shareable videos. +Description: Loom combines the expressiveness of video with the convenience of messaging. It's a new, more effective way of communicating with co-workers and customers. With Loom, you can record your camera, microphone, and desktop simultaneously. Your video is then instantly available to share through Loom's patented technology. +Moniker: loom +Tags: +- capture +- clip +- conference +- meeting +- presentation +- record +- video +ReleaseNotesUrl: https://new.loom.com/ +PurchaseUrl: https://www.loom.com/pricing +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/Loom/Loom/0.361.0/Loom.Loom.locale.zh-CN.yaml b/manifests/l/Loom/Loom/0.361.0/Loom.Loom.locale.zh-CN.yaml new file mode 100644 index 000000000000..8021c2d2d767 --- /dev/null +++ b/manifests/l/Loom/Loom/0.361.0/Loom.Loom.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: Loom.Loom +PackageVersion: 0.361.0 +PackageLocale: zh-CN +Publisher: Loom, Inc. +PublisherUrl: https://www.loom.com/ +PublisherSupportUrl: https://support.loom.com/ +PrivacyUrl: https://www.loom.com/privacy-policy +Author: Loom, Inc. +PackageName: Loom +PackageUrl: https://www.loom.com/ +License: 专有软件 +LicenseUrl: https://www.loom.com/terms +Copyright: © 2026, Loom, Inc. All Rights Reserved. +ShortDescription: Loom 是一款视频信息传递工具,可帮助您通过即时分享的视频传递信息。 +Description: Loom 结合了视频的表现力和信息传递的便利性,是一种与同事和客户更有效沟通的新方式。使用 Loom,您可以同时录制您的摄像头、麦克风和桌面,然后您就可以通过 Loom 的专利技术即时分享您的视频。 +Tags: +- 会议 +- 剪辑 +- 录制 +- 录屏 +- 演示 +- 视频 +ReleaseNotesUrl: https://new.loom.com/ +PurchaseUrl: https://www.loom.com/pricing +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/l/Loom/Loom/0.361.0/Loom.Loom.yaml b/manifests/l/Loom/Loom/0.361.0/Loom.Loom.yaml new file mode 100644 index 000000000000..c03a5b6ab167 --- /dev/null +++ b/manifests/l/Loom/Loom/0.361.0/Loom.Loom.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: Loom.Loom +PackageVersion: 0.361.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/7.2.75/LuisPater.CLIProxyAPI.installer.yaml b/manifests/l/LuisPater/CLIProxyAPI/7.2.75/LuisPater.CLIProxyAPI.installer.yaml new file mode 100644 index 000000000000..b01c46dabe65 --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/7.2.75/LuisPater.CLIProxyAPI.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: LuisPater.CLIProxyAPI +PackageVersion: 7.2.75 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: cli-proxy-api.exe +Commands: +- cli-proxy-api +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/router-for-me/CLIProxyAPI/releases/download/v7.2.75/CLIProxyAPI_7.2.75_windows_amd64.zip + InstallerSha256: 19823868BEBAF909E34FA3341AEEF16C37B4BA4C7390121E73A4EA566536F814 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/7.2.75/LuisPater.CLIProxyAPI.locale.en-US.yaml b/manifests/l/LuisPater/CLIProxyAPI/7.2.75/LuisPater.CLIProxyAPI.locale.en-US.yaml new file mode 100644 index 000000000000..6b2150d921de --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/7.2.75/LuisPater.CLIProxyAPI.locale.en-US.yaml @@ -0,0 +1,45 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: LuisPater.CLIProxyAPI +PackageVersion: 7.2.75 +PackageLocale: en-US +Publisher: Luis Pater +PublisherUrl: https://github.com/router-for-me +PublisherSupportUrl: https://github.com/router-for-me/CLIProxyAPI/issues +Author: Luis Pater +PackageName: CLI Proxy API +PackageUrl: https://github.com/router-for-me/CLIProxyAPI +License: MIT +LicenseUrl: https://github.com/router-for-me/CLIProxyAPI/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 Luis Pater +ShortDescription: Wrap Gemini CLI, ChatGPT Codex as an OpenAI/Gemini/Claude compatible API service, allowing you to enjoy the free Gemini 2.5 Pro, GPT 5 model through API +Description: |- + A proxy server that provides OpenAI/Gemini/Claude compatible API interfaces for CLI. + It now also supports OpenAI Codex (GPT models) and Claude Code via OAuth. + so you can use local or multi‑account CLI access with OpenAI‑compatible clients and SDKs. + Now, We added the first Chinese provider: Qwen Code. +Tags: +- ai +- chatbot +- chatgpt +- claude +- claude-code +- codex +- gemini +- large-language-model +- llm +- openai +ReleaseNotes: |- + Linux release assets + - CLIProxyAPI__linux_.tar.gz is the default Linux build. It supports dynamic library plugins and is built against a GLIBC 2.17 baseline. + - CLIProxyAPI__linux__no-plugin.tar.gz is the portable Linux build for musl-based or older systems such as OpenWrt. It does not support dynamic library plugins. + FreeBSD release assets + - CLIProxyAPI__freebsd_aarch64_no-plugin.tar.gz is the FreeBSD arm64 build. It is built without CGO and does not support dynamic library plugins. + Changelog + - feat(translator): handle reasoning content and improve request serialization (3d46ede4) + - feat(logging): add deferred request body capture for error handling (e5741673) + Full Changelog: https://github.com/router-for-me/CLIProxyAPI/compare/v7.2.74...v7.2.75 +ReleaseNotesUrl: https://github.com/router-for-me/CLIProxyAPI/releases/tag/v7.2.75 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/7.2.75/LuisPater.CLIProxyAPI.locale.zh-CN.yaml b/manifests/l/LuisPater/CLIProxyAPI/7.2.75/LuisPater.CLIProxyAPI.locale.zh-CN.yaml new file mode 100644 index 000000000000..4d3ae6d4cc98 --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/7.2.75/LuisPater.CLIProxyAPI.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: LuisPater.CLIProxyAPI +PackageVersion: 7.2.75 +PackageLocale: zh-CN +ShortDescription: 封装 Gemini CLI 和 ChatGPT Codex 为兼容 OpenAI/Gemini/Claude 的 API 服务,让您通过 API 畅享免费的 Gemini 2.5 Pro 和 GPT 5 模型 +Description: |- + 一个为 CLI 提供 OpenAI/Gemini/Claude 兼容 API 接口的代理服务器。 + 现已支持通过 OAuth 登录接入 OpenAI Codex(GPT 系列)和 Claude Code。 + 可与本地或多账户方式配合,使用任何 OpenAI 兼容的客户端与 SDK。 + 现在,我们添加了第一个中国提供商:Qwen Code。 +Tags: +- chatgpt +- claude +- claude-code +- codex +- gemini +- openai +- 人工智能 +- 大语言模型 +- 聊天机器人 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/7.2.75/LuisPater.CLIProxyAPI.yaml b/manifests/l/LuisPater/CLIProxyAPI/7.2.75/LuisPater.CLIProxyAPI.yaml new file mode 100644 index 000000000000..237e82ec3fa7 --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/7.2.75/LuisPater.CLIProxyAPI.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: LuisPater.CLIProxyAPI +PackageVersion: 7.2.75 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/l/limboprog/TaseDeck/0.1.0-alpha/limboprog.TaseDeck.installer.yaml b/manifests/l/limboprog/TaseDeck/0.1.0-alpha/limboprog.TaseDeck.installer.yaml new file mode 100644 index 000000000000..96edd2263cf1 --- /dev/null +++ b/manifests/l/limboprog/TaseDeck/0.1.0-alpha/limboprog.TaseDeck.installer.yaml @@ -0,0 +1,14 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: limboprog.TaseDeck +PackageVersion: 0.1.0-alpha +InstallerLocale: en-US +InstallerType: wix +ProductCode: '{8FA0E23B-D04E-441B-AC1D-70033D486B71}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/limboprog/TaseDeck/releases/download/v0.1.0-alpha/TaseDeck_0.1.0_x64_en-US.msi + InstallerSha256: 5359634E0B881D65E9DF2B15D1C16BD05CE788F92EE3847973555FD6CE455C30 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/limboprog/TaseDeck/0.1.0-alpha/limboprog.TaseDeck.locale.en-US.yaml b/manifests/l/limboprog/TaseDeck/0.1.0-alpha/limboprog.TaseDeck.locale.en-US.yaml new file mode 100644 index 000000000000..1855d4fd652c --- /dev/null +++ b/manifests/l/limboprog/TaseDeck/0.1.0-alpha/limboprog.TaseDeck.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: limboprog.TaseDeck +PackageVersion: 0.1.0-alpha +PackageLocale: en-US +Publisher: limboprog +PackageName: TaseDeck +License: MIT +ShortDescription: A cross-platform desktop application built with Tauri for managing Model Context Protocol (MCP) servers and developer utilities. +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/limboprog/TaseDeck/0.1.0-alpha/limboprog.TaseDeck.yaml b/manifests/l/limboprog/TaseDeck/0.1.0-alpha/limboprog.TaseDeck.yaml new file mode 100644 index 000000000000..f17ad557cf6f --- /dev/null +++ b/manifests/l/limboprog/TaseDeck/0.1.0-alpha/limboprog.TaseDeck.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: limboprog.TaseDeck +PackageVersion: 0.1.0-alpha +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/MattWhitwam/Wahlberg/1.57.0/MattWhitwam.Wahlberg.installer.yaml b/manifests/m/MattWhitwam/Wahlberg/1.57.0/MattWhitwam.Wahlberg.installer.yaml new file mode 100644 index 000000000000..202c354976c0 --- /dev/null +++ b/manifests/m/MattWhitwam/Wahlberg/1.57.0/MattWhitwam.Wahlberg.installer.yaml @@ -0,0 +1,16 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json +PackageIdentifier: MattWhitwam.Wahlberg +PackageVersion: 1.57.0 +Installers: +- Architecture: x64 + InstallerType: zip + InstallerUrl: https://github.com/matt-dx/wahlberg/releases/download/v1.57.0/Wahlberg-windows-x64.zip + InstallerSha256: 66397a1f1d76a2073a9b7b6230e8c8e264c6730980a9ea80c5044166afd643d2 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: Wahlberg.exe +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.EdgeWebView2Runtime +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/m/MattWhitwam/Wahlberg/1.57.0/MattWhitwam.Wahlberg.locale.en-US.yaml b/manifests/m/MattWhitwam/Wahlberg/1.57.0/MattWhitwam.Wahlberg.locale.en-US.yaml new file mode 100644 index 000000000000..442651cf2000 --- /dev/null +++ b/manifests/m/MattWhitwam/Wahlberg/1.57.0/MattWhitwam.Wahlberg.locale.en-US.yaml @@ -0,0 +1,14 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json +PackageIdentifier: MattWhitwam.Wahlberg +PackageVersion: 1.57.0 +PackageLocale: en-US +Publisher: Matt Whitwam +PublisherUrl: https://github.com/matt-dx/wahlberg +PackageName: Wahlberg +License: Proprietary +ShortDescription: A cross-platform Markdown viewer built with .NET MAUI and Blazor. +Tags: +- markdown +- viewer +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/m/MattWhitwam/Wahlberg/1.57.0/MattWhitwam.Wahlberg.yaml b/manifests/m/MattWhitwam/Wahlberg/1.57.0/MattWhitwam.Wahlberg.yaml new file mode 100644 index 000000000000..f46fc682107a --- /dev/null +++ b/manifests/m/MattWhitwam/Wahlberg/1.57.0/MattWhitwam.Wahlberg.yaml @@ -0,0 +1,6 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json +PackageIdentifier: MattWhitwam.Wahlberg +PackageVersion: 1.57.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/m/Matteo842/SaveState/2.9/Matteo842.SaveState.installer.yaml b/manifests/m/Matteo842/SaveState/2.9/Matteo842.SaveState.installer.yaml new file mode 100644 index 000000000000..2a773b7522a8 --- /dev/null +++ b/manifests/m/Matteo842/SaveState/2.9/Matteo842.SaveState.installer.yaml @@ -0,0 +1,20 @@ +# 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: Matteo842.SaveState +PackageVersion: '2.9' +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: SaveState.exe + PortableCommandAlias: SaveState.exe +InstallModes: +- silent +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Matteo842/SaveState/releases/download/v2.9/SaveState_v2.9_Win.zip + InstallerSha256: 027B5F552E0CC330AF00232773269E08108E02F212FF41F9084A69B706FFC58F +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Matteo842/SaveState/2.9/Matteo842.SaveState.locale.en-US.yaml b/manifests/m/Matteo842/SaveState/2.9/Matteo842.SaveState.locale.en-US.yaml new file mode 100644 index 000000000000..cc7be8fae89e --- /dev/null +++ b/manifests/m/Matteo842/SaveState/2.9/Matteo842.SaveState.locale.en-US.yaml @@ -0,0 +1,62 @@ +# 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: Matteo842.SaveState +PackageVersion: '2.9' +PackageLocale: en-US +Publisher: Matteo842 +PublisherUrl: https://github.com/Matteo842 +PublisherSupportUrl: https://github.com/Matteo842/SaveState/issues +Author: Matteo Cioffi +PackageName: SaveState +PackageUrl: https://github.com/Matteo842/SaveState +License: GPL-3.0 +LicenseUrl: https://github.com/Matteo842/SaveState/blob/HEAD/LICENSE +ShortDescription: | + A versatile game save backup manager, featuring Steam detection, Minecraft support, drag & drop, desktop shortcuts and emulator compatible. +Description: | + A user-friendly GUI application for Windows and Linux to easily back up and restore video game save files. Perfect for games without cloud saves, managing multiple save locations, or syncing your progress across devices. +Tags: +- automation +- backup +- desktop-app +- game +- games +- gui +- minecraft +- open-source +- pyside6 +- python +- save +- save-manager +- savegame +- steam +- video-game +- windows +ReleaseNotes: |- + SaveState v2.9 - Multi-Selection & Cloud Refinement + This major release introduces flexible multi-selection workflows, a complete structural overhaul for RetroArch core discovery, and critical infrastructure improvements for Google Drive authentication—specifically targeting Linux AppImage and handheld console compatibility. + What's New: + Google Drive Authentication & AppImage Compatibility + - Manual Callback Fallback: Enhanced OAuth authentication robustness by adding a manual callback URL input fallback. If a browser running on an isolated environment or handheld cannot reach the local port (localhost), users can now manually paste the authorization URL to complete the link. + - AppImage Directory Relocation: Credentials and tokens have been moved securely to the user's system app data directory. This resolves write-persistence limitations inherent to the AppImage mounting layer and automatically handles legacy token migration. + - Concurrency & Safety Locks: Implemented a dedicated threading lock to completely block concurrent authentication requests. Improved handling, UI timeout tracking, cancellation hooks, and automatic cleanup of background auth workers. + - Advanced Error Diagnostics: Added a structured tracking property (last_auth_error) to catch, preserve, and report descriptive troubleshooting logs directly within the interface during connection issues. + Advanced Multi-Selection & Header UI Overhaul + - Tristate Checkbox Headers: Replaced binary select-all buttons with a clean, space-saving tristate checkbox integrated directly into dialog headers. This provides a clear visual indicator for partial, full, or empty multi-selection states across lists. + - Bulk Profile Generation: List widgets for Ares, RetroArch, and generic emulator configurations now utilize ExtendedSelection. You can select dozens of games simultaneously and batch-import them into active profiles in a single click. + - Unified Selection Highlight Engine: Extracted selection styling rules out of local views and into a reusable utility module (selection_utils.py). All emulator list widgets now apply consistent highlighting behavior driven by a unified ProfileSelectionDelegate. + - Optimized Drag-and-Drop Workflow: Refactored the file dropping routine to gracefully handle multiple shortcuts and game directories at once, skipping duplicate profile names automatically and silencing repetitive alert popups. + Robust RetroArch Save & Core Architecture Parsing + - Unsorted Core Detection: Introduced full support for unstructured environments (RETROARCH_UNSORTED_CORE_ID), enabling the scanner to accurately map, read, and merge flat save structures residing directly in the root directory rather than within distinct core subfolders. + - Expanded Path Discovery: Upgraded configuration tracking (retroarch.cfg) to look through a much wider sequence of default installation paths on Windows, extending coverage across AppData, LocalAppData, and Microsoft Store deployment footprints. + - Max Depth Traversal Safeguards: Replaced generic directory loops with a dedicated recursive explorer (_iter_files_recursive) governed by strict depth thresholds, calculating exact file distributions and constructing game listings without causing scan loops to hang. + immagine + Contributors & Special Thanks + A very special thank you to our community for tracking bugs and expanding platform support: + - @Andered2520 — for isolating and documenting the Google Drive authentication loop on SteamOS (Legion Go 2) running via the AppImage package layout. Your testing on Discord was invaluable for tracing local network limits! + Windows — SaveState.exe + The VirusTotal badge is automatically added when you publish this release (~300 MB, scan via GitHub CDN). +ReleaseNotesUrl: https://github.com/Matteo842/SaveState/releases/tag/v2.9 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Matteo842/SaveState/2.9/Matteo842.SaveState.yaml b/manifests/m/Matteo842/SaveState/2.9/Matteo842.SaveState.yaml new file mode 100644 index 000000000000..41363e8e90c0 --- /dev/null +++ b/manifests/m/Matteo842/SaveState/2.9/Matteo842.SaveState.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: Matteo842.SaveState +PackageVersion: '2.9' +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/Azd/.package b/manifests/m/Microsoft/Azd/.package new file mode 100644 index 000000000000..e89380a8091d --- /dev/null +++ b/manifests/m/Microsoft/Azd/.package @@ -0,0 +1,11 @@ +{ + "schemaVersion": "0.1", + "owners": + [ + { + "type": "Bot", + "login": "esrp-winget-prod[bot]", + "id": 273969822 + } + ] +} \ No newline at end of file diff --git a/manifests/m/Microsoft/DotNet/AspNetCore/10/10.0.10/Microsoft.DotNet.AspNetCore.10.installer.yaml b/manifests/m/Microsoft/DotNet/AspNetCore/10/10.0.10/Microsoft.DotNet.AspNetCore.10.installer.yaml new file mode 100644 index 000000000000..d3efa123ec8f --- /dev/null +++ b/manifests/m/Microsoft/DotNet/AspNetCore/10/10.0.10/Microsoft.DotNet.AspNetCore.10.installer.yaml @@ -0,0 +1,44 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.AspNetCore.10 +PackageVersion: 10.0.10 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Custom: /norestart +Installers: +- Architecture: arm64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.10/aspnetcore-runtime-10.0.10-win-arm64.exe + InstallerSha256: EB0418E535C8D282F6678B3E6BBEC9317BCD34B26D458504111A30AF2944E4CD + ProductCode: '{359572C7-CCDE-4F48-BFB9-F90043898696}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft ASP.NET Core Runtime - 10.0.10 (arm64) + Publisher: Microsoft Corporation + DisplayVersion: 10.0.10.36226 + ProductCode: '{359572C7-CCDE-4F48-BFB9-F90043898696}' +- Architecture: x64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.10/aspnetcore-runtime-10.0.10-win-x64.exe + InstallerSha256: 586BCC0CF291ECDE7BACFF811D28C1CABD36B1F3FB81801CE4D2FB788C61BC88 + ProductCode: '{9A224B5D-8663-4E4B-8815-56231D8C2261}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft ASP.NET Core Runtime - 10.0.10 (x64) + Publisher: Microsoft Corporation + DisplayVersion: 10.0.10.36226 + ProductCode: '{9A224B5D-8663-4E4B-8815-56231D8C2261}' +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.10/aspnetcore-runtime-10.0.10-win-x86.exe + InstallerSha256: 66F8EB8848A1DDD1DBC6B4A9E6042761B994A0E7EF740062AE4BCFA254A49362 + ProductCode: '{5CEFBC6D-F508-46A6-8A52-E44B340CFDF6}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft ASP.NET Core Runtime - 10.0.10 (x86) + Publisher: Microsoft Corporation + DisplayVersion: 10.0.10.36226 + ProductCode: '{5CEFBC6D-F508-46A6-8A52-E44B340CFDF6}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/AspNetCore/10/10.0.10/Microsoft.DotNet.AspNetCore.10.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/AspNetCore/10/10.0.10/Microsoft.DotNet.AspNetCore.10.locale.en-US.yaml new file mode 100644 index 000000000000..87246fbd2e8e --- /dev/null +++ b/manifests/m/Microsoft/DotNet/AspNetCore/10/10.0.10/Microsoft.DotNet.AspNetCore.10.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.AspNetCore.10 +PackageVersion: 10.0.10 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft ASP.NET Core Runtime 10.0 +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: aspnetcore-10 +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- ASP.NET +- ASP.NET Core +- runtime +- web +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/AspNetCore/10/10.0.10/Microsoft.DotNet.AspNetCore.10.yaml b/manifests/m/Microsoft/DotNet/AspNetCore/10/10.0.10/Microsoft.DotNet.AspNetCore.10.yaml new file mode 100644 index 000000000000..53d47f8008a1 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/AspNetCore/10/10.0.10/Microsoft.DotNet.AspNetCore.10.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.AspNetCore.10 +PackageVersion: 10.0.10 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/AspNetCore/10/10.0.6/Microsoft.DotNet.AspNetCore.10.installer.yaml b/manifests/m/Microsoft/DotNet/AspNetCore/10/10.0.6/Microsoft.DotNet.AspNetCore.10.installer.yaml index 08f5b9f0a8af..aa8bfc9b61c1 100644 --- a/manifests/m/Microsoft/DotNet/AspNetCore/10/10.0.6/Microsoft.DotNet.AspNetCore.10.installer.yaml +++ b/manifests/m/Microsoft/DotNet/AspNetCore/10/10.0.6/Microsoft.DotNet.AspNetCore.10.installer.yaml @@ -10,7 +10,7 @@ InstallerSwitches: Installers: - Architecture: arm64 InstallerType: burn - InstallerUrl: https://download.microsoft.com/download/7e0a6c9c-8126-4b16-98f2-a93a95a68e4a/92c50ea0-829d-4f12-beca-09542b245bca/aspnetcore-runtime-10.0.6-win-arm64.exe + InstallerUrl: https://download.microsoft.com/download/95c22c6e-f4c3-4179-89d7-6520f3a9b759/176d9d23-bfac-4dcf-b821-60136cd29f8a/aspnetcore-runtime-10.0.6-win-arm64.exe InstallerSha256: C65A2DC0EE035FC606A78433E684AA44B2EE6B3574BCAD7EE6F1BEF8400DA48A ProductCode: '{104704A5-F3D6-46B3-B994-641D40ADF871}' AppsAndFeaturesEntries: @@ -20,7 +20,7 @@ Installers: Publisher: Microsoft Corporation - Architecture: x64 InstallerType: burn - InstallerUrl: https://download.microsoft.com/download/7e0a6c9c-8126-4b16-98f2-a93a95a68e4a/3349857a-e682-4f68-acd3-e520dee41357/aspnetcore-runtime-10.0.6-win-x64.exe + InstallerUrl: https://download.microsoft.com/download/95c22c6e-f4c3-4179-89d7-6520f3a9b759/b0643045-ce9d-4801-b05b-fdd892229c1f/aspnetcore-runtime-10.0.6-win-x64.exe InstallerSha256: 926A07AB16DC17B781B5F798AC507C4965B8F670E8602292DEF4B832964CC3D6 ProductCode: '{8F432FA7-DD1C-40C7-8EAE-C0D1A9D6D2D7}' AppsAndFeaturesEntries: @@ -30,7 +30,7 @@ Installers: Publisher: Microsoft Corporation - Architecture: x86 InstallerType: burn - InstallerUrl: https://download.microsoft.com/download/7e0a6c9c-8126-4b16-98f2-a93a95a68e4a/b8833a80-6072-4d58-91e7-9e805eb75e38/aspnetcore-runtime-10.0.6-win-x86.exe + InstallerUrl: https://download.microsoft.com/download/95c22c6e-f4c3-4179-89d7-6520f3a9b759/9f0e272b-3032-40cb-8612-6281e56cb83e/aspnetcore-runtime-10.0.6-win-x86.exe InstallerSha256: B1A1BA6C49BF1C47295BB4C69724790CC0D08A01E9932AA2096BED2A73335DF3 ProductCode: '{B282E493-BACE-441C-BAEE-ED6B0194D315}' AppsAndFeaturesEntries: diff --git a/manifests/m/Microsoft/DotNet/AspNetCore/8/8.0.29/Microsoft.DotNet.AspNetCore.8.installer.yaml b/manifests/m/Microsoft/DotNet/AspNetCore/8/8.0.29/Microsoft.DotNet.AspNetCore.8.installer.yaml new file mode 100644 index 000000000000..7df0cba0779c --- /dev/null +++ b/manifests/m/Microsoft/DotNet/AspNetCore/8/8.0.29/Microsoft.DotNet.AspNetCore.8.installer.yaml @@ -0,0 +1,44 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.AspNetCore.8 +PackageVersion: 8.0.29 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Custom: /norestart +Installers: +- Architecture: arm64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.29/aspnetcore-runtime-8.0.29-win-arm64.exe + InstallerSha256: 4D57508E3F832AB1D240F9E6289A9D813A63714EB7EC8D111BCBDA9F719CAA26 + ProductCode: '{fbad15a2-a1a4-4c02-b998-2be05c29d56a}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft ASP.NET Core 8.0.29 - Shared Framework (arm64) + Publisher: Microsoft Corporation + DisplayVersion: 8.0.29.26325 + ProductCode: '{fbad15a2-a1a4-4c02-b998-2be05c29d56a}' +- Architecture: x64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.29/aspnetcore-runtime-8.0.29-win-x64.exe + InstallerSha256: 4264934F253FBB689255A9A497A60588B8D51E7034AE3146C4C8BE17D336021C + ProductCode: '{6458568f-cbe1-43bf-b480-1b3901bc4c87}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft ASP.NET Core 8.0.29 - Shared Framework (x64) + Publisher: Microsoft Corporation + DisplayVersion: 8.0.29.26325 + ProductCode: '{6458568f-cbe1-43bf-b480-1b3901bc4c87}' +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.29/aspnetcore-runtime-8.0.29-win-x86.exe + InstallerSha256: 39DF07F7D0818A0AE206CCCBF540FF579254693CF499F77A8DB14DE0C6B913B4 + ProductCode: '{b9a57fa4-4572-45da-813d-aa4d241f988f}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft ASP.NET Core 8.0.29 - Shared Framework (x86) + Publisher: Microsoft Corporation + DisplayVersion: 8.0.29.26325 + ProductCode: '{b9a57fa4-4572-45da-813d-aa4d241f988f}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/AspNetCore/8/8.0.29/Microsoft.DotNet.AspNetCore.8.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/AspNetCore/8/8.0.29/Microsoft.DotNet.AspNetCore.8.locale.en-US.yaml new file mode 100644 index 000000000000..b6ebae2bd66e --- /dev/null +++ b/manifests/m/Microsoft/DotNet/AspNetCore/8/8.0.29/Microsoft.DotNet.AspNetCore.8.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.AspNetCore.8 +PackageVersion: 8.0.29 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft ASP.NET Core Runtime 8.0 +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: aspnetcore-8 +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- ASP.NET +- ASP.NET Core +- runtime +- web +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/AspNetCore/8/8.0.29/Microsoft.DotNet.AspNetCore.8.yaml b/manifests/m/Microsoft/DotNet/AspNetCore/8/8.0.29/Microsoft.DotNet.AspNetCore.8.yaml new file mode 100644 index 000000000000..d308f2ca8a8c --- /dev/null +++ b/manifests/m/Microsoft/DotNet/AspNetCore/8/8.0.29/Microsoft.DotNet.AspNetCore.8.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.AspNetCore.8 +PackageVersion: 8.0.29 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/AspNetCore/9/9.0.18/Microsoft.DotNet.AspNetCore.9.installer.yaml b/manifests/m/Microsoft/DotNet/AspNetCore/9/9.0.18/Microsoft.DotNet.AspNetCore.9.installer.yaml new file mode 100644 index 000000000000..551130f6ccc1 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/AspNetCore/9/9.0.18/Microsoft.DotNet.AspNetCore.9.installer.yaml @@ -0,0 +1,44 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.AspNetCore.9 +PackageVersion: 9.0.18 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Custom: /norestart +Installers: +- Architecture: arm64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.18/aspnetcore-runtime-9.0.18-win-arm64.exe + InstallerSha256: A50FCF49005DF6EEFC23EEB0898AEFB1ECB6D1BC46E92CD36A39545B47DF0A3F + ProductCode: '{7c630727-c273-4097-9c6a-04cfc7f81618}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft ASP.NET Core 9.0.18 - Shared Framework (arm64) + Publisher: Microsoft Corporation + DisplayVersion: 9.0.18.26323 + ProductCode: '{7c630727-c273-4097-9c6a-04cfc7f81618}' +- Architecture: x64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.18/aspnetcore-runtime-9.0.18-win-x64.exe + InstallerSha256: F1F9703C79C91FB41DA3443A00EC6A86A177613C901AC6DE0F8606B1F26B5501 + ProductCode: '{ac0d1b45-14db-465e-acb6-7199178d6fd6}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft ASP.NET Core 9.0.18 - Shared Framework (x64) + Publisher: Microsoft Corporation + DisplayVersion: 9.0.18.26323 + ProductCode: '{ac0d1b45-14db-465e-acb6-7199178d6fd6}' +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.18/aspnetcore-runtime-9.0.18-win-x86.exe + InstallerSha256: 933B57752B9F6D035D0FEDD77AB09D02CE18533EE5B9FF7E68444531F6C7B05A + ProductCode: '{abf71cae-360a-4718-b782-d5b22c31ba93}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft ASP.NET Core 9.0.18 - Shared Framework (x86) + Publisher: Microsoft Corporation + DisplayVersion: 9.0.18.26323 + ProductCode: '{abf71cae-360a-4718-b782-d5b22c31ba93}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/AspNetCore/9/9.0.18/Microsoft.DotNet.AspNetCore.9.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/AspNetCore/9/9.0.18/Microsoft.DotNet.AspNetCore.9.locale.en-US.yaml new file mode 100644 index 000000000000..499db70353ad --- /dev/null +++ b/manifests/m/Microsoft/DotNet/AspNetCore/9/9.0.18/Microsoft.DotNet.AspNetCore.9.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.AspNetCore.9 +PackageVersion: 9.0.18 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft ASP.NET Core Runtime 9.0 +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: aspnetcore-9 +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- ASP.NET +- ASP.NET Core +- runtime +- web +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/AspNetCore/9/9.0.18/Microsoft.DotNet.AspNetCore.9.yaml b/manifests/m/Microsoft/DotNet/AspNetCore/9/9.0.18/Microsoft.DotNet.AspNetCore.9.yaml new file mode 100644 index 000000000000..d428a1a3dcf9 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/AspNetCore/9/9.0.18/Microsoft.DotNet.AspNetCore.9.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.AspNetCore.9 +PackageVersion: 9.0.18 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/AspNetCore/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.AspNetCore.Preview.installer.yaml b/manifests/m/Microsoft/DotNet/AspNetCore/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.AspNetCore.Preview.installer.yaml new file mode 100644 index 000000000000..1557ff979b1c --- /dev/null +++ b/manifests/m/Microsoft/DotNet/AspNetCore/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.AspNetCore.Preview.installer.yaml @@ -0,0 +1,45 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.AspNetCore.Preview +PackageVersion: 11.0.0-preview.6.26359.118 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Log: ' ' + Custom: /norestart +Installers: +- Architecture: arm64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/11.0.0-preview.6.26359.118/aspnetcore-runtime-11.0.0-preview.6.26359.118-win-arm64.exe + InstallerSha256: 7C52EA11982D8ADCDC56C1B0FAD0DC1F56281A98191BEE1B24C9FC2AF088C7C2 + ProductCode: '{728F4C21-8781-44E2-AAF9-F2E9C92FEDC7}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft ASP.NET Core Runtime - 11.0.0 Preview 6 (arm64) + Publisher: Microsoft Corporation + DisplayVersion: 11.0.0.36309 + ProductCode: '{728F4C21-8781-44E2-AAF9-F2E9C92FEDC7}' +- Architecture: x64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/11.0.0-preview.6.26359.118/aspnetcore-runtime-11.0.0-preview.6.26359.118-win-x64.exe + InstallerSha256: 1A03FCF87A81F32E93C2B7903611FC243F61B5249FE7BCA723AD3AF38D9E4F37 + ProductCode: '{FA7E4274-21FA-4FCB-AA1D-D24AFC9A55F6}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft ASP.NET Core Runtime - 11.0.0 Preview 6 (x64) + Publisher: Microsoft Corporation + DisplayVersion: 11.0.0.36309 + ProductCode: '{FA7E4274-21FA-4FCB-AA1D-D24AFC9A55F6}' +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/11.0.0-preview.6.26359.118/aspnetcore-runtime-11.0.0-preview.6.26359.118-win-x86.exe + InstallerSha256: 150B213B6F89E5436A70F631C121A0B4DF4957E4CB53F3E21C63F1082688F4CD + ProductCode: '{18EF9CE1-9F9A-4FA6-946F-32B794EE7641}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft ASP.NET Core Runtime - 11.0.0 Preview 6 (x86) + Publisher: Microsoft Corporation + DisplayVersion: 11.0.0.36309 + ProductCode: '{18EF9CE1-9F9A-4FA6-946F-32B794EE7641}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/AspNetCore/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.AspNetCore.Preview.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/AspNetCore/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.AspNetCore.Preview.locale.en-US.yaml new file mode 100644 index 000000000000..fb97cd1bdc26 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/AspNetCore/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.AspNetCore.Preview.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.AspNetCore.Preview +PackageVersion: 11.0.0-preview.6.26359.118 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft ASP.NET Core Runtime 11.0 Preview +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: aspnetcore-preview +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- ASP.NET +- ASP.NET Core +- runtime +- web +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/AspNetCore/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.AspNetCore.Preview.yaml b/manifests/m/Microsoft/DotNet/AspNetCore/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.AspNetCore.Preview.yaml new file mode 100644 index 000000000000..e3ad0cf4c034 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/AspNetCore/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.AspNetCore.Preview.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.AspNetCore.Preview +PackageVersion: 11.0.0-preview.6.26359.118 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.10/Microsoft.DotNet.DesktopRuntime.10.installer.yaml b/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.10/Microsoft.DotNet.DesktopRuntime.10.installer.yaml new file mode 100644 index 000000000000..6baef0539f16 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.10/Microsoft.DotNet.DesktopRuntime.10.installer.yaml @@ -0,0 +1,44 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.DesktopRuntime.10 +PackageVersion: 10.0.10 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Custom: /norestart +Installers: +- Architecture: arm64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.10/windowsdesktop-runtime-10.0.10-win-arm64.exe + InstallerSha256: 9891CFE6747583FC809F647FEA500C9F424F90EF9FA776F40D7B5AE2BAB69E02 + ProductCode: '{B47B3D93-5561-4281-B2D6-0C6EFE494CD6}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft Windows Desktop Runtime 10.0.10 (arm64) + Publisher: Microsoft Corporation + DisplayVersion: 10.0.10.50000 + ProductCode: '{B47B3D93-5561-4281-B2D6-0C6EFE494CD6}' +- Architecture: x64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.10/windowsdesktop-runtime-10.0.10-win-x64.exe + InstallerSha256: E82FC901C8F52D716293B2BC0830CE0DD254A06268C457A19E8FC503560A84D1 + ProductCode: '{866BECDA-F284-473A-9E84-0CCE816BF06F}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft Windows Desktop Runtime 10.0.10 (x64) + Publisher: Microsoft Corporation + DisplayVersion: 10.0.10.50000 + ProductCode: '{866BECDA-F284-473A-9E84-0CCE816BF06F}' +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.10/windowsdesktop-runtime-10.0.10-win-x86.exe + InstallerSha256: 9C174F8DF1624A3C33C4E2BBCF99BB7C7166D1A319A2B624A8B84AE4EC692675 + ProductCode: '{4A021EBB-D70A-4B9D-B07B-E1F68B3E7C92}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft Windows Desktop Runtime 10.0.10 (x86) + Publisher: Microsoft Corporation + DisplayVersion: 10.0.10.50000 + ProductCode: '{4A021EBB-D70A-4B9D-B07B-E1F68B3E7C92}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.10/Microsoft.DotNet.DesktopRuntime.10.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.10/Microsoft.DotNet.DesktopRuntime.10.locale.en-US.yaml new file mode 100644 index 000000000000..d625b8bf510e --- /dev/null +++ b/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.10/Microsoft.DotNet.DesktopRuntime.10.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.DesktopRuntime.10 +PackageVersion: 10.0.10 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft .NET Windows Desktop Runtime 10.0 +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: dotnet-desktop-10 +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- Windows Desktop +- Windows +- runtime +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.10/Microsoft.DotNet.DesktopRuntime.10.yaml b/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.10/Microsoft.DotNet.DesktopRuntime.10.yaml new file mode 100644 index 000000000000..913ee083cc76 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.10/Microsoft.DotNet.DesktopRuntime.10.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.DesktopRuntime.10 +PackageVersion: 10.0.10 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.6/Microsoft.DotNet.DesktopRuntime.10.installer.yaml b/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.6/Microsoft.DotNet.DesktopRuntime.10.installer.yaml index 0a48ce18234a..848f7a6b3a96 100644 --- a/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.6/Microsoft.DotNet.DesktopRuntime.10.installer.yaml +++ b/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.6/Microsoft.DotNet.DesktopRuntime.10.installer.yaml @@ -10,7 +10,7 @@ InstallerSwitches: Installers: - Architecture: arm64 InstallerType: burn - InstallerUrl: https://download.microsoft.com/download/b996d352-d0eb-4c21-ad6f-79918e71369a/c315d987-c61d-4b88-8880-c27ac24c2999/windowsdesktop-runtime-10.0.6-win-arm64.exe + InstallerUrl: https://download.microsoft.com/download/99445f61-a65e-44ce-b5fd-2fc49eeb99f6/8a93876a-3dd1-416a-ba0a-37e126c12a19/windowsdesktop-runtime-10.0.6-win-arm64.exe InstallerSha256: 7FDAFBFC1ACF04621FCC910D7AD9797B68A3D44AFB98B73FF6F518759A31124E ProductCode: '{E7AFD3A9-4167-499D-959B-2C44C2DAE6AD}' AppsAndFeaturesEntries: @@ -20,7 +20,7 @@ Installers: Publisher: Microsoft Corporation - Architecture: x64 InstallerType: burn - InstallerUrl: https://download.microsoft.com/download/b996d352-d0eb-4c21-ad6f-79918e71369a/f5015adc-0c4d-43af-bbcf-9b0f55a477b0/windowsdesktop-runtime-10.0.6-win-x64.exe + InstallerUrl: https://download.microsoft.com/download/99445f61-a65e-44ce-b5fd-2fc49eeb99f6/2075531c-1738-4c1e-a0b5-2ba6d5b06fe0/windowsdesktop-runtime-10.0.6-win-x64.exe InstallerSha256: 5F3F75833F97E5BBCB701A664D09EB872A6DBCCDD5B474C66FA2CCCDE2FC51CB ProductCode: '{A4FB84EE-B9EF-4F5E-B39D-654C02FF7129}' AppsAndFeaturesEntries: @@ -30,7 +30,7 @@ Installers: Publisher: Microsoft Corporation - Architecture: x86 InstallerType: burn - InstallerUrl: https://download.microsoft.com/download/b996d352-d0eb-4c21-ad6f-79918e71369a/15a40462-6f4f-4416-af5a-b129eb7a9b14/windowsdesktop-runtime-10.0.6-win-x86.exe + InstallerUrl: https://download.microsoft.com/download/99445f61-a65e-44ce-b5fd-2fc49eeb99f6/c82cfa8e-c77e-4371-98e7-fa8f26920ecc/windowsdesktop-runtime-10.0.6-win-x86.exe InstallerSha256: B2B180E7E996B38107292AC32D7C72897B6CD740A1AB805414B199F23C6456F4 ProductCode: '{470716B6-F2D6-4BB5-A865-70471E521D9B}' AppsAndFeaturesEntries: diff --git a/manifests/m/Microsoft/DotNet/HostingBundle/10/10.0.10/Microsoft.DotNet.HostingBundle.10.installer.yaml b/manifests/m/Microsoft/DotNet/HostingBundle/10/10.0.10/Microsoft.DotNet.HostingBundle.10.installer.yaml new file mode 100644 index 000000000000..0fbd459642a3 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/HostingBundle/10/10.0.10/Microsoft.DotNet.HostingBundle.10.installer.yaml @@ -0,0 +1,24 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.HostingBundle.10 +PackageVersion: 10.0.10 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Custom: /norestart +Installers: +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.10/dotnet-hosting-10.0.10-win.exe + InstallerSha256: 944D8E46A49D5AD26C99E63CA9A6F89AA2508FDCA564B95D3F94F96500D71044 + ProductCode: '{B1C5B6E6-6D07-4D70-845B-4A99888CE15C}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET 10.0.10 - Windows Server Hosting + Publisher: Microsoft Corporation + DisplayVersion: 10.0.10.26326 + ProductCode: '{B1C5B6E6-6D07-4D70-845B-4A99888CE15C}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/HostingBundle/10/10.0.10/Microsoft.DotNet.HostingBundle.10.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/HostingBundle/10/10.0.10/Microsoft.DotNet.HostingBundle.10.locale.en-US.yaml new file mode 100644 index 000000000000..510193ef5f2d --- /dev/null +++ b/manifests/m/Microsoft/DotNet/HostingBundle/10/10.0.10/Microsoft.DotNet.HostingBundle.10.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.HostingBundle.10 +PackageVersion: 10.0.10 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft ASP.NET Core Hosting Bundle 10.0 +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: dotnet-hosting-10 +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- ASP.NET Core +- ASP.NET +- web +- hosting +- hosting bundle +- IIS +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/HostingBundle/10/10.0.10/Microsoft.DotNet.HostingBundle.10.yaml b/manifests/m/Microsoft/DotNet/HostingBundle/10/10.0.10/Microsoft.DotNet.HostingBundle.10.yaml new file mode 100644 index 000000000000..50588b1f3455 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/HostingBundle/10/10.0.10/Microsoft.DotNet.HostingBundle.10.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.HostingBundle.10 +PackageVersion: 10.0.10 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/HostingBundle/10/10.0.6/Microsoft.DotNet.HostingBundle.10.installer.yaml b/manifests/m/Microsoft/DotNet/HostingBundle/10/10.0.6/Microsoft.DotNet.HostingBundle.10.installer.yaml index 21081f0968f6..3c82ecdfae8e 100644 --- a/manifests/m/Microsoft/DotNet/HostingBundle/10/10.0.6/Microsoft.DotNet.HostingBundle.10.installer.yaml +++ b/manifests/m/Microsoft/DotNet/HostingBundle/10/10.0.6/Microsoft.DotNet.HostingBundle.10.installer.yaml @@ -10,7 +10,7 @@ InstallerSwitches: Installers: - Architecture: x86 InstallerType: burn - InstallerUrl: https://download.microsoft.com/download/0f689923-4e09-421f-b6a5-16f0d99463e0/24492e8a-5c42-4e0a-8873-797cb569027e/dotnet-hosting-10.0.6-win.exe + InstallerUrl: https://download.microsoft.com/download/637181b2-fb92-43c5-86eb-e54b49dab71a/504a893e-2c2c-4d19-be3d-9da0468a5f40/dotnet-hosting-10.0.6-win.exe InstallerSha256: 1046F88C198AC12E9079F38DCD42D67CC059BF33A3FABE0B16BE58522BEF1FC4 ProductCode: '{193BFFB0-6108-40D1-BF20-6C7FE4102000}' AppsAndFeaturesEntries: diff --git a/manifests/m/Microsoft/DotNet/HostingBundle/8/8.0.29/Microsoft.DotNet.HostingBundle.8.installer.yaml b/manifests/m/Microsoft/DotNet/HostingBundle/8/8.0.29/Microsoft.DotNet.HostingBundle.8.installer.yaml new file mode 100644 index 000000000000..dfa52b8536fe --- /dev/null +++ b/manifests/m/Microsoft/DotNet/HostingBundle/8/8.0.29/Microsoft.DotNet.HostingBundle.8.installer.yaml @@ -0,0 +1,24 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.HostingBundle.8 +PackageVersion: 8.0.29 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Custom: /norestart +Installers: +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.29/dotnet-hosting-8.0.29-win.exe + InstallerSha256: AB50C9294DF8A12391B3EC37C1635D002F8E89C377C640E5167300BD483E9036 + ProductCode: '{fec5af07-a2a4-43a1-9952-8d291e39d23c}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET 8.0.29 - Windows Server Hosting + Publisher: Microsoft Corporation + DisplayVersion: 8.0.29.26325 + ProductCode: '{fec5af07-a2a4-43a1-9952-8d291e39d23c}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/HostingBundle/8/8.0.29/Microsoft.DotNet.HostingBundle.8.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/HostingBundle/8/8.0.29/Microsoft.DotNet.HostingBundle.8.locale.en-US.yaml new file mode 100644 index 000000000000..12999ab250f0 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/HostingBundle/8/8.0.29/Microsoft.DotNet.HostingBundle.8.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.HostingBundle.8 +PackageVersion: 8.0.29 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft ASP.NET Core Hosting Bundle 8.0 +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: dotnet-hosting-8 +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- ASP.NET Core +- ASP.NET +- web +- hosting +- hosting bundle +- IIS +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/HostingBundle/8/8.0.29/Microsoft.DotNet.HostingBundle.8.yaml b/manifests/m/Microsoft/DotNet/HostingBundle/8/8.0.29/Microsoft.DotNet.HostingBundle.8.yaml new file mode 100644 index 000000000000..a84ad466cb88 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/HostingBundle/8/8.0.29/Microsoft.DotNet.HostingBundle.8.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.HostingBundle.8 +PackageVersion: 8.0.29 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/HostingBundle/9/9.0.18/Microsoft.DotNet.HostingBundle.9.installer.yaml b/manifests/m/Microsoft/DotNet/HostingBundle/9/9.0.18/Microsoft.DotNet.HostingBundle.9.installer.yaml new file mode 100644 index 000000000000..6b772d4af4fb --- /dev/null +++ b/manifests/m/Microsoft/DotNet/HostingBundle/9/9.0.18/Microsoft.DotNet.HostingBundle.9.installer.yaml @@ -0,0 +1,24 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.HostingBundle.9 +PackageVersion: 9.0.18 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Custom: /norestart +Installers: +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.18/dotnet-hosting-9.0.18-win.exe + InstallerSha256: 918904CC5312A0BFB63C6B454D27947BAD1EF011E9A617ECF0F5A275EED62EA5 + ProductCode: '{14382109-8664-473e-8cbe-4dab9adf935f}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET 9.0.18 - Windows Server Hosting + Publisher: Microsoft Corporation + DisplayVersion: 9.0.18.26323 + ProductCode: '{14382109-8664-473e-8cbe-4dab9adf935f}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/HostingBundle/9/9.0.18/Microsoft.DotNet.HostingBundle.9.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/HostingBundle/9/9.0.18/Microsoft.DotNet.HostingBundle.9.locale.en-US.yaml new file mode 100644 index 000000000000..c57f0297f368 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/HostingBundle/9/9.0.18/Microsoft.DotNet.HostingBundle.9.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.HostingBundle.9 +PackageVersion: 9.0.18 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft ASP.NET Core Hosting Bundle 9.0 +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: dotnet-hosting-9 +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- ASP.NET Core +- ASP.NET +- web +- hosting +- hosting bundle +- IIS +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/HostingBundle/9/9.0.18/Microsoft.DotNet.HostingBundle.9.yaml b/manifests/m/Microsoft/DotNet/HostingBundle/9/9.0.18/Microsoft.DotNet.HostingBundle.9.yaml new file mode 100644 index 000000000000..dd2ea6906e5c --- /dev/null +++ b/manifests/m/Microsoft/DotNet/HostingBundle/9/9.0.18/Microsoft.DotNet.HostingBundle.9.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.HostingBundle.9 +PackageVersion: 9.0.18 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/HostingBundle/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.HostingBundle.Preview.installer.yaml b/manifests/m/Microsoft/DotNet/HostingBundle/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.HostingBundle.Preview.installer.yaml new file mode 100644 index 000000000000..a155593ea3a3 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/HostingBundle/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.HostingBundle.Preview.installer.yaml @@ -0,0 +1,25 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.HostingBundle.Preview +PackageVersion: 11.0.0-preview.6.26359.118 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Log: ' ' + Custom: /norestart +Installers: +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/11.0.0-preview.6.26359.118/dotnet-hosting-11.0.0-preview.6.26359.118-win.exe + InstallerSha256: 74467F0AD8E56C868AFDC1880C8CBECE251C815FA19550F0E75AAF15499261FB + ProductCode: '{23CD51A8-67D9-430A-A575-539FEFB27E35}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET 11.0.0 Preview 6 Build preview.6.26359.118 - Windows Server Hosting + Publisher: Microsoft Corporation + DisplayVersion: 11.0.0.26359 + ProductCode: '{23CD51A8-67D9-430A-A575-539FEFB27E35}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/HostingBundle/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.HostingBundle.Preview.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/HostingBundle/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.HostingBundle.Preview.locale.en-US.yaml new file mode 100644 index 000000000000..cb820881c72b --- /dev/null +++ b/manifests/m/Microsoft/DotNet/HostingBundle/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.HostingBundle.Preview.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.HostingBundle.Preview +PackageVersion: 11.0.0-preview.6.26359.118 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft ASP.NET Core Hosting Bundle 11.0 Preview +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: dotnet-hosting-preview +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- ASP.NET Core +- ASP.NET +- web +- hosting +- hosting bundle +- IIS +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/HostingBundle/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.HostingBundle.Preview.yaml b/manifests/m/Microsoft/DotNet/HostingBundle/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.HostingBundle.Preview.yaml new file mode 100644 index 000000000000..0d086d180b3c --- /dev/null +++ b/manifests/m/Microsoft/DotNet/HostingBundle/Preview/11.0.0-preview.6.26359.118/Microsoft.DotNet.HostingBundle.Preview.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.HostingBundle.Preview +PackageVersion: 11.0.0-preview.6.26359.118 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/Runtime/8/8.0.29/Microsoft.DotNet.Runtime.8.installer.yaml b/manifests/m/Microsoft/DotNet/Runtime/8/8.0.29/Microsoft.DotNet.Runtime.8.installer.yaml new file mode 100644 index 000000000000..26ba662964f0 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/Runtime/8/8.0.29/Microsoft.DotNet.Runtime.8.installer.yaml @@ -0,0 +1,44 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.Runtime.8 +PackageVersion: 8.0.29 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Custom: /norestart +Installers: +- Architecture: x64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.29/dotnet-runtime-8.0.29-win-x64.exe + InstallerSha256: 58DA46D4D560D67B7BB00E5C9C5C41049DE29A9958A879EEA1E7FD5F891EB0DE + ProductCode: '{0636c53d-0ac0-4636-9b38-7fe0a4f09a00}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET Runtime - 8.0.29 (x64) + Publisher: Microsoft Corporation + DisplayVersion: 8.0.29.36224 + ProductCode: '{0636c53d-0ac0-4636-9b38-7fe0a4f09a00}' +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.29/dotnet-runtime-8.0.29-win-x86.exe + InstallerSha256: 22D5FBA149248CA19BD4E5CE0FB81B795836F60CA0FA8E76737E0526AA85C19B + ProductCode: '{ba52c687-526d-4a58-8620-cccabbb0b077}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET Runtime - 8.0.29 (x86) + Publisher: Microsoft Corporation + DisplayVersion: 8.0.29.36224 + ProductCode: '{ba52c687-526d-4a58-8620-cccabbb0b077}' +- Architecture: arm64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.29/dotnet-runtime-8.0.29-win-arm64.exe + InstallerSha256: 52D13AF55A4876450CBAD0F78081FC8656FFE29D503420705023ADDE6BB467BE + ProductCode: '{5c95d225-e48f-4a2a-a145-437c9039d1c9}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET Runtime - 8.0.29 (arm64) + Publisher: Microsoft Corporation + DisplayVersion: 8.0.29.36224 + ProductCode: '{5c95d225-e48f-4a2a-a145-437c9039d1c9}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/Runtime/8/8.0.29/Microsoft.DotNet.Runtime.8.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/Runtime/8/8.0.29/Microsoft.DotNet.Runtime.8.locale.en-US.yaml new file mode 100644 index 000000000000..41e5c6ec53cb --- /dev/null +++ b/manifests/m/Microsoft/DotNet/Runtime/8/8.0.29/Microsoft.DotNet.Runtime.8.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.Runtime.8 +PackageVersion: 8.0.29 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft .NET Runtime 8.0 +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: dotnet-runtime-8 +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- runtime +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/Runtime/8/8.0.29/Microsoft.DotNet.Runtime.8.yaml b/manifests/m/Microsoft/DotNet/Runtime/8/8.0.29/Microsoft.DotNet.Runtime.8.yaml new file mode 100644 index 000000000000..b49512b6b5c5 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/Runtime/8/8.0.29/Microsoft.DotNet.Runtime.8.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.Runtime.8 +PackageVersion: 8.0.29 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/10/10.0.106/Microsoft.DotNet.SDK.10.installer.yaml b/manifests/m/Microsoft/DotNet/SDK/10/10.0.106/Microsoft.DotNet.SDK.10.installer.yaml index 9fd03e136e16..72a2f8d738a8 100644 --- a/manifests/m/Microsoft/DotNet/SDK/10/10.0.106/Microsoft.DotNet.SDK.10.installer.yaml +++ b/manifests/m/Microsoft/DotNet/SDK/10/10.0.106/Microsoft.DotNet.SDK.10.installer.yaml @@ -10,7 +10,7 @@ InstallerSwitches: Installers: - Architecture: arm64 InstallerType: burn - InstallerUrl: https://download.microsoft.com/download/d47355d6-6723-4175-94ff-73b12a6d3293/d9589bd5-ab9b-4a44-a38f-a1aa55df2d9f/dotnet-sdk-10.0.106-win-arm64.exe + InstallerUrl: https://download.microsoft.com/download/e7f0ef92-e0df-4edf-ab24-d4b2d6592de1/4ce28808-793b-4e34-8435-005149e3d621/dotnet-sdk-10.0.106-win-arm64.exe InstallerSha256: 403E49B7609B8E342F4DC5C8582ED20904F11373A2C6C556EC0F9161541E5BFF ProductCode: '{C3A87F02-05F5-446F-BECD-7B4902566CB9}' AppsAndFeaturesEntries: @@ -20,7 +20,7 @@ Installers: Publisher: Microsoft Corporation - Architecture: x64 InstallerType: burn - InstallerUrl: https://download.microsoft.com/download/d47355d6-6723-4175-94ff-73b12a6d3293/d985b118-88cf-4b26-808f-86718ff80dc2/dotnet-sdk-10.0.106-win-x64.exe + InstallerUrl: https://download.microsoft.com/download/e7f0ef92-e0df-4edf-ab24-d4b2d6592de1/05e7d003-f816-4680-9b76-c5dc7534bf88/dotnet-sdk-10.0.106-win-x64.exe InstallerSha256: AC8AA3C10B4C74850CB95F506210B349A68C2CD92A7F788ACF54F42D1A810D00 ProductCode: '{45E47119-FE62-4303-A985-312A82847936}' AppsAndFeaturesEntries: @@ -30,7 +30,7 @@ Installers: Publisher: Microsoft Corporation - Architecture: x86 InstallerType: burn - InstallerUrl: https://download.microsoft.com/download/d47355d6-6723-4175-94ff-73b12a6d3293/e81a4b26-aaa5-4938-a0bb-2c95b93ee352/dotnet-sdk-10.0.106-win-x86.exe + InstallerUrl: https://download.microsoft.com/download/e7f0ef92-e0df-4edf-ab24-d4b2d6592de1/a847723e-4a3a-49de-a5c9-f3b9279de7c1/dotnet-sdk-10.0.106-win-x86.exe InstallerSha256: 4FB1C94833724DB50108E0A487B584FF057BC973F3AA8FF5D230186501E4301C ProductCode: '{7AFAA849-9F7E-4752-A39A-4BAE0298F913}' AppsAndFeaturesEntries: diff --git a/manifests/m/Microsoft/DotNet/SDK/10/10.0.110/Microsoft.DotNet.SDK.10.installer.yaml b/manifests/m/Microsoft/DotNet/SDK/10/10.0.110/Microsoft.DotNet.SDK.10.installer.yaml new file mode 100644 index 000000000000..f50c787fa18d --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/10/10.0.110/Microsoft.DotNet.SDK.10.installer.yaml @@ -0,0 +1,44 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.10 +PackageVersion: 10.0.110 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Custom: /norestart +Installers: +- Architecture: arm64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.110/dotnet-sdk-10.0.110-win-arm64.exe + InstallerSha256: B672B4F08DDDD79C2E4DDC28595CAFA64DB58C0213F060B25F516553B8495A18 + ProductCode: '{29F8CF33-934F-4DFB-B490-EFB9DA5AC943}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 10.0.110 (arm64) + Publisher: Microsoft Corporation + DisplayVersion: 10.1.1026.32716 + ProductCode: '{29F8CF33-934F-4DFB-B490-EFB9DA5AC943}' +- Architecture: x64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.110/dotnet-sdk-10.0.110-win-x64.exe + InstallerSha256: 6C6FA36BC74088500A7E181411A5BB83334A0140C75B5A2AEB77F80FE913D75F + ProductCode: '{FD5EA214-C690-466F-B8FB-1741881913F9}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 10.0.110 (x64) + Publisher: Microsoft Corporation + DisplayVersion: 10.1.1026.32716 + ProductCode: '{FD5EA214-C690-466F-B8FB-1741881913F9}' +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.110/dotnet-sdk-10.0.110-win-x86.exe + InstallerSha256: B697EA3223EF579FD15DC8576575F4F6F715A1D48DB8AD9919534DF458A2A0BD + ProductCode: '{B35328A6-AD70-414C-9BF9-714A50A749F5}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 10.0.110 (x86) + Publisher: Microsoft Corporation + DisplayVersion: 10.1.1026.32716 + ProductCode: '{B35328A6-AD70-414C-9BF9-714A50A749F5}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/10/10.0.110/Microsoft.DotNet.SDK.10.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/SDK/10/10.0.110/Microsoft.DotNet.SDK.10.locale.en-US.yaml new file mode 100644 index 000000000000..e3950c7d1a15 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/10/10.0.110/Microsoft.DotNet.SDK.10.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.10 +PackageVersion: 10.0.110 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft .NET SDK 10.0 +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: dotnet-sdk-10 +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- SDK +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/10/10.0.110/Microsoft.DotNet.SDK.10.yaml b/manifests/m/Microsoft/DotNet/SDK/10/10.0.110/Microsoft.DotNet.SDK.10.yaml new file mode 100644 index 000000000000..50cc65438d15 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/10/10.0.110/Microsoft.DotNet.SDK.10.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.10 +PackageVersion: 10.0.110 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/10/10.0.202/Microsoft.DotNet.SDK.10.installer.yaml b/manifests/m/Microsoft/DotNet/SDK/10/10.0.202/Microsoft.DotNet.SDK.10.installer.yaml index c4dfe231941d..22c8454350af 100644 --- a/manifests/m/Microsoft/DotNet/SDK/10/10.0.202/Microsoft.DotNet.SDK.10.installer.yaml +++ b/manifests/m/Microsoft/DotNet/SDK/10/10.0.202/Microsoft.DotNet.SDK.10.installer.yaml @@ -10,7 +10,7 @@ InstallerSwitches: Installers: - Architecture: arm64 InstallerType: burn - InstallerUrl: https://download.microsoft.com/download/7244abfd-37cf-48da-8760-80e4a5976ebc/c8fd970a-b260-454f-ac1b-1fb2c185767b/dotnet-sdk-10.0.202-win-arm64.exe + InstallerUrl: https://download.microsoft.com/download/2f687396-5a89-41a2-9694-4b8bcca5a86f/366099d7-8099-4b5e-a7c6-c2238a175ff3/dotnet-sdk-10.0.202-win-arm64.exe InstallerSha256: 685B1BEF6DFE44AA70ACDCE4C16F498EFEE90312A60060ED72FA4143F9DB0C76 ProductCode: '{0012F56F-930B-4E01-8DDB-D115C0347535}' AppsAndFeaturesEntries: @@ -20,7 +20,7 @@ Installers: Publisher: Microsoft Corporation - Architecture: x64 InstallerType: burn - InstallerUrl: https://download.microsoft.com/download/7244abfd-37cf-48da-8760-80e4a5976ebc/a07a8c73-c3d9-44ca-a877-7daf0c9d422c/dotnet-sdk-10.0.202-win-x64.exe + InstallerUrl: https://download.microsoft.com/download/2f687396-5a89-41a2-9694-4b8bcca5a86f/7fa332eb-1cbe-4a20-96df-76c22da32b7c/dotnet-sdk-10.0.202-win-x64.exe InstallerSha256: 56A16CB8A60ED1AB64370A52EB5004965A5681603D910500C6CE23606F2CC83F ProductCode: '{9C2AABF8-DCAB-4D53-8AF1-AFA436703FB8}' AppsAndFeaturesEntries: @@ -30,7 +30,7 @@ Installers: Publisher: Microsoft Corporation - Architecture: x86 InstallerType: burn - InstallerUrl: https://download.microsoft.com/download/7244abfd-37cf-48da-8760-80e4a5976ebc/bed9459d-bc56-485b-92c1-057cd36b2502/dotnet-sdk-10.0.202-win-x86.exe + InstallerUrl: https://download.microsoft.com/download/2f687396-5a89-41a2-9694-4b8bcca5a86f/12fee737-e1e8-48f0-a076-8f262de5f56e/dotnet-sdk-10.0.202-win-x86.exe InstallerSha256: 93F7057B03F768DB5F97FB39E64B4FB3A18AEE581EF7FBAA33CB5F4FF6C26C4E ProductCode: '{4FCDDC6A-56B2-4E61-BB30-9A430F4D9307}' AppsAndFeaturesEntries: diff --git a/manifests/m/Microsoft/DotNet/SDK/10/10.0.302/Microsoft.DotNet.SDK.10.installer.yaml b/manifests/m/Microsoft/DotNet/SDK/10/10.0.302/Microsoft.DotNet.SDK.10.installer.yaml new file mode 100644 index 000000000000..c63c761f616b --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/10/10.0.302/Microsoft.DotNet.SDK.10.installer.yaml @@ -0,0 +1,44 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.10 +PackageVersion: 10.0.302 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Custom: /norestart +Installers: +- Architecture: arm64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.302/dotnet-sdk-10.0.302-win-arm64.exe + InstallerSha256: BEDF0D3AE61284252DB8012DAB3809879FB6D9721335414B68992D32A6DA20BB + ProductCode: '{C016519C-47A4-4C58-966C-836980D0394D}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 10.0.302 (arm64) + Publisher: Microsoft Corporation + DisplayVersion: 10.3.226.33009 + ProductCode: '{C016519C-47A4-4C58-966C-836980D0394D}' +- Architecture: x64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.302/dotnet-sdk-10.0.302-win-x64.exe + InstallerSha256: B2618A69A4AE385EB03BDE0DE89468881318C6338B14E67574D691E145A7CE1C + ProductCode: '{609A456D-467D-4077-9BA2-B6404F1B1163}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 10.0.302 (x64) + Publisher: Microsoft Corporation + DisplayVersion: 10.3.226.33009 + ProductCode: '{609A456D-467D-4077-9BA2-B6404F1B1163}' +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.302/dotnet-sdk-10.0.302-win-x86.exe + InstallerSha256: FE317BB21F30E93AE7175F6B55554512FA3A4A0FD58C7388FFD52486E634DA2E + ProductCode: '{388FE321-0DA5-4D27-84AC-77F3A93F5438}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 10.0.302 (x86) + Publisher: Microsoft Corporation + DisplayVersion: 10.3.226.33009 + ProductCode: '{388FE321-0DA5-4D27-84AC-77F3A93F5438}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/10/10.0.302/Microsoft.DotNet.SDK.10.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/SDK/10/10.0.302/Microsoft.DotNet.SDK.10.locale.en-US.yaml new file mode 100644 index 000000000000..a8132e1d3a30 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/10/10.0.302/Microsoft.DotNet.SDK.10.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.10 +PackageVersion: 10.0.302 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft .NET SDK 10.0 +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: dotnet-sdk-10 +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- SDK +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/10/10.0.302/Microsoft.DotNet.SDK.10.yaml b/manifests/m/Microsoft/DotNet/SDK/10/10.0.302/Microsoft.DotNet.SDK.10.yaml new file mode 100644 index 000000000000..a1cf4814c6d2 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/10/10.0.302/Microsoft.DotNet.SDK.10.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.10 +PackageVersion: 10.0.302 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/8/8.0.129/Microsoft.DotNet.SDK.8.installer.yaml b/manifests/m/Microsoft/DotNet/SDK/8/8.0.129/Microsoft.DotNet.SDK.8.installer.yaml new file mode 100644 index 000000000000..3e1780743925 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/8/8.0.129/Microsoft.DotNet.SDK.8.installer.yaml @@ -0,0 +1,44 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.8 +PackageVersion: 8.0.129 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Custom: /norestart +Installers: +- Architecture: x64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.129/dotnet-sdk-8.0.129-win-x64.exe + InstallerSha256: 14C443EE0296F8A6FF4D4DF66FCBBA6B7BCAE54C2C692D6DEEE6335B6C7820D9 + ProductCode: '{ebd336e4-58c8-4bb6-b114-a856fcea5e49}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 8.0.129 (x64) + Publisher: Microsoft Corporation + DisplayVersion: 8.1.2926.32601 + ProductCode: '{ebd336e4-58c8-4bb6-b114-a856fcea5e49}' +- Architecture: arm64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.129/dotnet-sdk-8.0.129-win-arm64.exe + InstallerSha256: 65F08D1B71F4D6043CDC5E2F84C0524198AD6F645410CF4E4DE71F787106CA15 + ProductCode: '{db305bcc-afff-4caf-a432-3724bdf72fde}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 8.0.129 (arm64) + Publisher: Microsoft Corporation + DisplayVersion: 8.1.2926.32601 + ProductCode: '{db305bcc-afff-4caf-a432-3724bdf72fde}' +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.129/dotnet-sdk-8.0.129-win-x86.exe + InstallerSha256: 8FE29D4ABAEB71BB800A18B66A5F7316E446E460F8D30FD3411B9A7F292563EF + ProductCode: '{864932dc-f372-473b-b85d-860d7044ee09}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 8.0.129 (x86) + Publisher: Microsoft Corporation + DisplayVersion: 8.1.2926.32601 + ProductCode: '{864932dc-f372-473b-b85d-860d7044ee09}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/8/8.0.129/Microsoft.DotNet.SDK.8.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/SDK/8/8.0.129/Microsoft.DotNet.SDK.8.locale.en-US.yaml new file mode 100644 index 000000000000..b93121d82911 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/8/8.0.129/Microsoft.DotNet.SDK.8.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.8 +PackageVersion: 8.0.129 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft .NET SDK 8.0 +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: dotnet-sdk-8 +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- SDK +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/8/8.0.129/Microsoft.DotNet.SDK.8.yaml b/manifests/m/Microsoft/DotNet/SDK/8/8.0.129/Microsoft.DotNet.SDK.8.yaml new file mode 100644 index 000000000000..61016400db5b --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/8/8.0.129/Microsoft.DotNet.SDK.8.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.8 +PackageVersion: 8.0.129 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/8/8.0.423/Microsoft.DotNet.SDK.8.installer.yaml b/manifests/m/Microsoft/DotNet/SDK/8/8.0.423/Microsoft.DotNet.SDK.8.installer.yaml new file mode 100644 index 000000000000..c88507af8771 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/8/8.0.423/Microsoft.DotNet.SDK.8.installer.yaml @@ -0,0 +1,44 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.8 +PackageVersion: 8.0.423 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Custom: /norestart +Installers: +- Architecture: x64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.423/dotnet-sdk-8.0.423-win-x64.exe + InstallerSha256: 79437444249FAD67A6BBA966105DFB9534F37FA963E122A4CCE034837074E02C + ProductCode: '{0f960a40-e9b6-46ca-81c4-45704c211022}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 8.0.423 (x64) + Publisher: Microsoft Corporation + DisplayVersion: 8.4.2326.32602 + ProductCode: '{0f960a40-e9b6-46ca-81c4-45704c211022}' +- Architecture: arm64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.423/dotnet-sdk-8.0.423-win-arm64.exe + InstallerSha256: 3923FDC8D48C143B017AD272A1C118A8F68138EAD3C8F942DFA6F733E83DB2B7 + ProductCode: '{60990a9e-bf46-45aa-9905-3cabad727d39}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 8.0.423 (arm64) + Publisher: Microsoft Corporation + DisplayVersion: 8.4.2326.32602 + ProductCode: '{60990a9e-bf46-45aa-9905-3cabad727d39}' +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.423/dotnet-sdk-8.0.423-win-x86.exe + InstallerSha256: D5C3B1023345773AA5BC090A867F7E31ABBC66487C076DFCB9CC386BF0E67E76 + ProductCode: '{10771306-741d-430d-9617-22a6b3172c7d}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 8.0.423 (x86) + Publisher: Microsoft Corporation + DisplayVersion: 8.4.2326.32602 + ProductCode: '{10771306-741d-430d-9617-22a6b3172c7d}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/8/8.0.423/Microsoft.DotNet.SDK.8.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/SDK/8/8.0.423/Microsoft.DotNet.SDK.8.locale.en-US.yaml new file mode 100644 index 000000000000..86feb92cab67 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/8/8.0.423/Microsoft.DotNet.SDK.8.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.8 +PackageVersion: 8.0.423 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft .NET SDK 8.0 +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: dotnet-sdk-8 +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- SDK +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/8/8.0.423/Microsoft.DotNet.SDK.8.yaml b/manifests/m/Microsoft/DotNet/SDK/8/8.0.423/Microsoft.DotNet.SDK.8.yaml new file mode 100644 index 000000000000..9672af722888 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/8/8.0.423/Microsoft.DotNet.SDK.8.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.8 +PackageVersion: 8.0.423 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/9/9.0.119/Microsoft.DotNet.SDK.9.installer.yaml b/manifests/m/Microsoft/DotNet/SDK/9/9.0.119/Microsoft.DotNet.SDK.9.installer.yaml new file mode 100644 index 000000000000..c6636a9aff98 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/9/9.0.119/Microsoft.DotNet.SDK.9.installer.yaml @@ -0,0 +1,44 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.9 +PackageVersion: 9.0.119 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Custom: /norestart +Installers: +- Architecture: x64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.119/dotnet-sdk-9.0.119-win-x64.exe + InstallerSha256: 6580DFB2C0A40492AB4E4747ADBDDBA4234D665E08D09B0876C71CC3168A0201 + ProductCode: '{aba8d105-3b42-4d4d-8d4b-870b5ae0fb04}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 9.0.119 (x64) + Publisher: Microsoft Corporation + DisplayVersion: 9.1.1926.32319 + ProductCode: '{aba8d105-3b42-4d4d-8d4b-870b5ae0fb04}' +- Architecture: arm64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.119/dotnet-sdk-9.0.119-win-arm64.exe + InstallerSha256: BB4CC6BA230DAB392D3FF08CC4A71815C08F893E61FF3608BF2C9D14F0ED1D8A + ProductCode: '{2975e769-0bcb-49e9-82ac-8ec540f8d67b}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 9.0.119 (arm64) + Publisher: Microsoft Corporation + DisplayVersion: 9.1.1926.32319 + ProductCode: '{2975e769-0bcb-49e9-82ac-8ec540f8d67b}' +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.119/dotnet-sdk-9.0.119-win-x86.exe + InstallerSha256: EF0D0987A763814742036A21A09D8480218B916B1B425E26AA44C1D8A362F8AB + ProductCode: '{8664e4f5-a2be-4eaa-b2ea-37149da86516}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 9.0.119 (x86) + Publisher: Microsoft Corporation + DisplayVersion: 9.1.1926.32319 + ProductCode: '{8664e4f5-a2be-4eaa-b2ea-37149da86516}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/9/9.0.119/Microsoft.DotNet.SDK.9.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/SDK/9/9.0.119/Microsoft.DotNet.SDK.9.locale.en-US.yaml new file mode 100644 index 000000000000..0fba2d5ebec9 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/9/9.0.119/Microsoft.DotNet.SDK.9.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.9 +PackageVersion: 9.0.119 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft .NET SDK 9.0 +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: dotnet-sdk-9 +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- SDK +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/9/9.0.119/Microsoft.DotNet.SDK.9.yaml b/manifests/m/Microsoft/DotNet/SDK/9/9.0.119/Microsoft.DotNet.SDK.9.yaml new file mode 100644 index 000000000000..0031a8e3a7de --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/9/9.0.119/Microsoft.DotNet.SDK.9.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.9 +PackageVersion: 9.0.119 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/9/9.0.316/Microsoft.DotNet.SDK.9.installer.yaml b/manifests/m/Microsoft/DotNet/SDK/9/9.0.316/Microsoft.DotNet.SDK.9.installer.yaml new file mode 100644 index 000000000000..04ecc95ff8f3 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/9/9.0.316/Microsoft.DotNet.SDK.9.installer.yaml @@ -0,0 +1,44 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.9 +PackageVersion: 9.0.316 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Custom: /norestart +Installers: +- Architecture: x64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.316/dotnet-sdk-9.0.316-win-x64.exe + InstallerSha256: 591130B2499225974B5347BC1BCFCC93796ABBDD9115DB3B5A8B6A1FCEC4E3F8 + ProductCode: '{43876a28-a466-4921-9710-4b889a11554f}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 9.0.316 (x64) + Publisher: Microsoft Corporation + DisplayVersion: 9.3.1626.32312 + ProductCode: '{43876a28-a466-4921-9710-4b889a11554f}' +- Architecture: arm64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.316/dotnet-sdk-9.0.316-win-arm64.exe + InstallerSha256: 94D168863112811FD2274A98013FA228B7EB6900200A3D515FB1A8F8D551BE54 + ProductCode: '{4e9160d5-dc60-4c98-9a71-c9f4e55964f7}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 9.0.316 (arm64) + Publisher: Microsoft Corporation + DisplayVersion: 9.3.1626.32312 + ProductCode: '{4e9160d5-dc60-4c98-9a71-c9f4e55964f7}' +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.316/dotnet-sdk-9.0.316-win-x86.exe + InstallerSha256: B73D387D837165068D1C6184AC7CF42B6099EC43CC0673FC5EEFB01C67711AAD + ProductCode: '{242dca2a-6632-477d-9282-5ac51edb8319}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 9.0.316 (x86) + Publisher: Microsoft Corporation + DisplayVersion: 9.3.1626.32312 + ProductCode: '{242dca2a-6632-477d-9282-5ac51edb8319}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/9/9.0.316/Microsoft.DotNet.SDK.9.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/SDK/9/9.0.316/Microsoft.DotNet.SDK.9.locale.en-US.yaml new file mode 100644 index 000000000000..35919b2216e4 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/9/9.0.316/Microsoft.DotNet.SDK.9.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.9 +PackageVersion: 9.0.316 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft .NET SDK 9.0 +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: dotnet-sdk-9 +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- SDK +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/9/9.0.316/Microsoft.DotNet.SDK.9.yaml b/manifests/m/Microsoft/DotNet/SDK/9/9.0.316/Microsoft.DotNet.SDK.9.yaml new file mode 100644 index 000000000000..6c9a8d896c19 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/9/9.0.316/Microsoft.DotNet.SDK.9.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.9 +PackageVersion: 9.0.316 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/Preview/11.0.100-preview.6.26359.118/Microsoft.DotNet.SDK.Preview.installer.yaml b/manifests/m/Microsoft/DotNet/SDK/Preview/11.0.100-preview.6.26359.118/Microsoft.DotNet.SDK.Preview.installer.yaml new file mode 100644 index 000000000000..eafd762a9b60 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/Preview/11.0.100-preview.6.26359.118/Microsoft.DotNet.SDK.Preview.installer.yaml @@ -0,0 +1,45 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.Preview +PackageVersion: 11.0.100-preview.6.26359.118 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Log: ' ' + Custom: /norestart +Installers: +- Architecture: arm64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/11.0.100-preview.6.26359.118/dotnet-sdk-11.0.100-preview.6.26359.118-win-arm64.exe + InstallerSha256: 2A2C6D91A67B59E83E04B5E7EC65A4168A4160D6CBE56C5FDC5C7E8F14F4A8A1 + ProductCode: '{7C34B801-F1F6-4BDF-840D-B59893195380}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 11.0.100-preview.6.26359.118 (arm64) + Publisher: Microsoft Corporation + DisplayVersion: 11.1.26.36018 + ProductCode: '{7C34B801-F1F6-4BDF-840D-B59893195380}' +- Architecture: x64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/11.0.100-preview.6.26359.118/dotnet-sdk-11.0.100-preview.6.26359.118-win-x64.exe + InstallerSha256: DD4D4F947EA15AA58AE3B7E9417A3E71ED8DABF7BF42BFA79515D57133F225EE + ProductCode: '{EE4546A0-9451-4170-9D60-2FA5058A98A2}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 11.0.100-preview.6.26359.118 (x64) + Publisher: Microsoft Corporation + DisplayVersion: 11.1.26.36018 + ProductCode: '{EE4546A0-9451-4170-9D60-2FA5058A98A2}' +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/11.0.100-preview.6.26359.118/dotnet-sdk-11.0.100-preview.6.26359.118-win-x86.exe + InstallerSha256: 6D3C635027BB68BB378B5DC5559773C12AA883AEB4C3185BAA5306F2C48C9446 + ProductCode: '{9AF33DA8-14D9-4070-91DF-471EE31B713C}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 11.0.100-preview.6.26359.118 (x86) + Publisher: Microsoft Corporation + DisplayVersion: 11.1.26.36018 + ProductCode: '{9AF33DA8-14D9-4070-91DF-471EE31B713C}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/Preview/11.0.100-preview.6.26359.118/Microsoft.DotNet.SDK.Preview.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/SDK/Preview/11.0.100-preview.6.26359.118/Microsoft.DotNet.SDK.Preview.locale.en-US.yaml new file mode 100644 index 000000000000..e657a3b5a70a --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/Preview/11.0.100-preview.6.26359.118/Microsoft.DotNet.SDK.Preview.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.Preview +PackageVersion: 11.0.100-preview.6.26359.118 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft .NET SDK 11.0 Preview +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: dotnet-sdk-preview +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- SDK +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/Preview/11.0.100-preview.6.26359.118/Microsoft.DotNet.SDK.Preview.yaml b/manifests/m/Microsoft/DotNet/SDK/Preview/11.0.100-preview.6.26359.118/Microsoft.DotNet.SDK.Preview.yaml new file mode 100644 index 000000000000..dda0fa75410f --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/Preview/11.0.100-preview.6.26359.118/Microsoft.DotNet.SDK.Preview.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.Preview +PackageVersion: 11.0.100-preview.6.26359.118 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/RemoteDesktopClient/1.2.7279.0/Microsoft.RemoteDesktopClient.installer.yaml b/manifests/m/Microsoft/RemoteDesktopClient/1.2.7279.0/Microsoft.RemoteDesktopClient.installer.yaml new file mode 100644 index 000000000000..ca3a55b0c920 --- /dev/null +++ b/manifests/m/Microsoft/RemoteDesktopClient/1.2.7279.0/Microsoft.RemoteDesktopClient.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: Microsoft.RemoteDesktopClient +PackageVersion: 1.2.7279.0 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: APPLICATIONFOLDER="" + Custom: ALLUSERS=1 +UpgradeBehavior: install +Protocols: +- ms-avd +- ms-rd +FileExtensions: +- rdpw +Installers: +- Architecture: x86 + InstallerUrl: https://res.cdn.office.net/remote-desktop-windows-client/c0843686-6494-4b83-a194-ec333759631e/RemoteDesktop_1.2.7279.0_x86.msi + InstallerSha256: 76B2826CE960F78065F0C70402BC48D84E406CF934033BFFBC8110E7CA4F8CFE + ProductCode: '{BA741475-2A52-4746-A78D-C90F9FF014CB}' + AppsAndFeaturesEntries: + - ProductCode: '{BA741475-2A52-4746-A78D-C90F9FF014CB}' + UpgradeCode: '{F35D4E51-0F33-426C-B8A8-3ECF4ADBFC5F}' +- Architecture: x64 + InstallerUrl: https://res.cdn.office.net/remote-desktop-windows-client/04dda26b-a19a-4085-956a-f87d81bb03ec/RemoteDesktop_1.2.7279.0_x64.msi + InstallerSha256: 70B978561B42507E1E00610CFEA04BF85AB15AA8090294960064FD7697892F66 + ProductCode: '{F0B175E6-3C28-420A-B697-87700AF0EC7D}' + AppsAndFeaturesEntries: + - ProductCode: '{F0B175E6-3C28-420A-B697-87700AF0EC7D}' + UpgradeCode: '{F35D4E51-0F33-426C-B8A8-3ECF4ADBFC5F}' +- Architecture: arm64 + InstallerUrl: https://res.cdn.office.net/remote-desktop-windows-client/929d2837-645d-4b75-83d6-57e4d71dd196/RemoteDesktop_1.2.7279.0_ARM64.msi + InstallerSha256: 33618605112EB7B65D9CF14BBEBB8557B112A9C6DE21F9069CEDC5E09AFC5F90 + ProductCode: '{934107E2-0DA5-46BB-BD28-DABFB85F957F}' + AppsAndFeaturesEntries: + - ProductCode: '{934107E2-0DA5-46BB-BD28-DABFB85F957F}' + UpgradeCode: '{F35D4E51-0F33-426C-B8A8-3ECF4ADBFC5F}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/RemoteDesktopClient/1.2.7279.0/Microsoft.RemoteDesktopClient.locale.en-US.yaml b/manifests/m/Microsoft/RemoteDesktopClient/1.2.7279.0/Microsoft.RemoteDesktopClient.locale.en-US.yaml new file mode 100644 index 000000000000..39663a428ef1 --- /dev/null +++ b/manifests/m/Microsoft/RemoteDesktopClient/1.2.7279.0/Microsoft.RemoteDesktopClient.locale.en-US.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Microsoft.RemoteDesktopClient +PackageVersion: 1.2.7279.0 +PackageLocale: en-US +Publisher: Microsoft Corporation +PublisherUrl: https://www.microsoft.com/ +PublisherSupportUrl: https://support.microsoft.com/ +PrivacyUrl: https://privacy.microsoft.com/privacystatement +Author: Microsoft Corporation +PackageName: Remote Desktop +PackageUrl: https://learn.microsoft.com/azure/virtual-desktop/users/connect-windows +License: Proprietary +LicenseUrl: https://www.microsoft.com/legal/terms-of-use +Copyright: |- + © Microsoft Corporation + All rights reserved. +CopyrightUrl: https://www.microsoft.com/legal/intellectualproperty/trademarks +ShortDescription: You can access Windows Virtual Desktop resources on devices with Windows 7, Windows 10, and Windows 10 IoT Enterprise using the Windows Desktop client. +Moniker: msrdc +Tags: +- remote-desktop +- virtual-desktop +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/RemoteDesktopClient/1.2.7279.0/Microsoft.RemoteDesktopClient.locale.zh-CN.yaml b/manifests/m/Microsoft/RemoteDesktopClient/1.2.7279.0/Microsoft.RemoteDesktopClient.locale.zh-CN.yaml new file mode 100644 index 000000000000..db4c0617fa90 --- /dev/null +++ b/manifests/m/Microsoft/RemoteDesktopClient/1.2.7279.0/Microsoft.RemoteDesktopClient.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: Microsoft.RemoteDesktopClient +PackageVersion: 1.2.7279.0 +PackageLocale: zh-CN +Publisher: Microsoft Corporation +PublisherUrl: https://www.microsoft.com/ +PublisherSupportUrl: https://support.microsoft.com/ +PrivacyUrl: https://privacy.microsoft.com/zh-cn/privacystatement +Author: Microsoft Corporation +PackageName: 远程桌面 +PackageUrl: https://learn.microsoft.com/zh-cn/azure/virtual-desktop/users/connect-windows +License: 专有软件 +LicenseUrl: https://www.microsoft.com/legal/terms-of-use +Copyright: |- + © Microsoft Corporation + 保留所有权利。 +CopyrightUrl: https://www.microsoft.com/legal/intellectualproperty/trademarks +ShortDescription: 您可以使用 Windows 桌面客户端在运行 Windows 7、Windows 10 和 Windows 10 IoT Enterprise 的设备上访问 Windows 虚拟桌面资源。 +Tags: +- 虚拟桌面 +- 远程桌面 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/RemoteDesktopClient/1.2.7279.0/Microsoft.RemoteDesktopClient.yaml b/manifests/m/Microsoft/RemoteDesktopClient/1.2.7279.0/Microsoft.RemoteDesktopClient.yaml new file mode 100644 index 000000000000..cbe406383d20 --- /dev/null +++ b/manifests/m/Microsoft/RemoteDesktopClient/1.2.7279.0/Microsoft.RemoteDesktopClient.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: Microsoft.RemoteDesktopClient +PackageVersion: 1.2.7279.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.455.141.0/Microsoft.SafetyScanner.installer.yaml b/manifests/m/Microsoft/SafetyScanner/1.455.141.0/Microsoft.SafetyScanner.installer.yaml new file mode 100644 index 000000000000..b295996ebe7f --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.455.141.0/Microsoft.SafetyScanner.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: Microsoft.SafetyScanner +PackageVersion: 1.455.141.0 +InstallerType: portable +Commands: +- safetyscanner +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.455.141.0&arch=x86 + InstallerSha256: B0F3481E33830BB60B01D66D00D87D9FEFCC0A5AE80CE9B735F38F4CA331E45F +- Architecture: x64 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.455.141.0&arch=amd64 + InstallerSha256: B6EB001AA4FBB5A32EC7A92793DBD12651C1DE66AF0D61FC648A46A6ED0306EA +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.455.141.0/Microsoft.SafetyScanner.locale.en-US.yaml b/manifests/m/Microsoft/SafetyScanner/1.455.141.0/Microsoft.SafetyScanner.locale.en-US.yaml new file mode 100644 index 000000000000..59197b8b7b82 --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.455.141.0/Microsoft.SafetyScanner.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Microsoft.SafetyScanner +PackageVersion: 1.455.141.0 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft Safety Scanner +PackageUrl: https://learn.microsoft.com/en-us/defender-endpoint/safety-scanner-download +License: Proprietary +Copyright: © Microsoft Corporation. All rights reserved. +ShortDescription: A scan tool designed to find and remove malware from Windows computers. Download it and run a scan to find malware and try to reverse changes made by identified threats. +Description: |- + A scan tool designed to find and remove malware from Windows computers. Download it and run a scan to find malware and try to reverse changes made by identified threats. + + The tool uses the same security intelligence update definitions as (among others) Microsoft Defender Antivirus. Safety Scanner does however not have an internal definition update checker, but does get app updates every 3-4 hours. Thus, the Winget package may lag some days behind Windows Update + Microsoft Defender Antivirus. +Tags: +- microsoft-defender-antivirus +- microsoft-safety-scanner +- msert +- windows-security +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.455.141.0/Microsoft.SafetyScanner.yaml b/manifests/m/Microsoft/SafetyScanner/1.455.141.0/Microsoft.SafetyScanner.yaml new file mode 100644 index 000000000000..c9234528a8fe --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.455.141.0/Microsoft.SafetyScanner.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: Microsoft.SafetyScanner +PackageVersion: 1.455.141.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.455.143.0/Microsoft.SafetyScanner.installer.yaml b/manifests/m/Microsoft/SafetyScanner/1.455.143.0/Microsoft.SafetyScanner.installer.yaml new file mode 100644 index 000000000000..78a611f61999 --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.455.143.0/Microsoft.SafetyScanner.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: Microsoft.SafetyScanner +PackageVersion: 1.455.143.0 +InstallerType: portable +Commands: +- safetyscanner +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.455.143.0&arch=x86 + InstallerSha256: AF42EFD6AEF976559DB02594A9C07EC109260D204D4EEEA699090FF2C8A76E69 +- Architecture: x64 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.455.143.0&arch=amd64 + InstallerSha256: D1B5EAA25326CC03A61E88292C94FF660B0A13BB1D10780F0E8860A95ABAFA85 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.455.143.0/Microsoft.SafetyScanner.locale.en-US.yaml b/manifests/m/Microsoft/SafetyScanner/1.455.143.0/Microsoft.SafetyScanner.locale.en-US.yaml new file mode 100644 index 000000000000..3a20fb4405ef --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.455.143.0/Microsoft.SafetyScanner.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Microsoft.SafetyScanner +PackageVersion: 1.455.143.0 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft Safety Scanner +PackageUrl: https://learn.microsoft.com/en-us/defender-endpoint/safety-scanner-download +License: Proprietary +Copyright: © Microsoft Corporation. All rights reserved. +ShortDescription: A scan tool designed to find and remove malware from Windows computers. Download it and run a scan to find malware and try to reverse changes made by identified threats. +Description: |- + A scan tool designed to find and remove malware from Windows computers. Download it and run a scan to find malware and try to reverse changes made by identified threats. + + The tool uses the same security intelligence update definitions as (among others) Microsoft Defender Antivirus. Safety Scanner does however not have an internal definition update checker, but does get app updates every 3-4 hours. Thus, the Winget package may lag some days behind Windows Update + Microsoft Defender Antivirus. +Tags: +- microsoft-defender-antivirus +- microsoft-safety-scanner +- msert +- windows-security +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.455.143.0/Microsoft.SafetyScanner.yaml b/manifests/m/Microsoft/SafetyScanner/1.455.143.0/Microsoft.SafetyScanner.yaml new file mode 100644 index 000000000000..02f11bb7d992 --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.455.143.0/Microsoft.SafetyScanner.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: Microsoft.SafetyScanner +PackageVersion: 1.455.143.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/VisualStudio/2019/Enterprise/16.11.58/Microsoft.VisualStudio.2019.Enterprise.installer.yaml b/manifests/m/Microsoft/VisualStudio/2019/Enterprise/16.11.58/Microsoft.VisualStudio.2019.Enterprise.installer.yaml new file mode 100644 index 000000000000..a0cb6bfbdcff --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2019/Enterprise/16.11.58/Microsoft.VisualStudio.2019.Enterprise.installer.yaml @@ -0,0 +1,93 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2019.Enterprise +PackageVersion: 16.11.58 +InstallerSwitches: + Silent: --quiet + SilentWithProgress: --passive + Upgrade: update + Custom: --wait --campaign "winget" +ExpectedReturnCodes: +- InstallerReturnCode: 1001 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1003 + ReturnResponse: fileInUse + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5004 + ReturnResponse: cancelledByUser + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8001 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8002 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8003 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8004 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8005 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8007 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8008 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8009 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -1073720687 + ReturnResponse: noNetwork + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -2146233083 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 740 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5001 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5002 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5003 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5005 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5007 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5008 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8006 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +Commands: +- devenv +Installers: +- Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/d93bcdb2-1c87-4eba-9ee3-734d20b5a8f3/dcb8c1cc5dad8ebdb56b6d702efe74d34cd4df7219e970e7780edb6f40454c12/vs_Enterprise.exe + InstallerSha256: dcb8c1cc5dad8ebdb56b6d702efe74d34cd4df7219e970e7780edb6f40454c12 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/2019/Enterprise/16.11.58/Microsoft.VisualStudio.2019.Enterprise.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudio/2019/Enterprise/16.11.58/Microsoft.VisualStudio.2019.Enterprise.locale.en-US.yaml new file mode 100644 index 000000000000..35863c95f15c --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2019/Enterprise/16.11.58/Microsoft.VisualStudio.2019.Enterprise.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2019.Enterprise +PackageVersion: 16.11.58 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Visual Studio Enterprise 2019 +PackageUrl: https://visualstudio.microsoft.com/ +License: Proprietary +LicenseUrl: https://visualstudio.microsoft.com/license-terms/ +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +ShortDescription: Built for scale, security, and speed - the IDE for complex, high-impact development. +Moniker: vs2019-enterprise +Tags: +- c# +- c++ +- vs +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/2019/Enterprise/16.11.58/Microsoft.VisualStudio.2019.Enterprise.yaml b/manifests/m/Microsoft/VisualStudio/2019/Enterprise/16.11.58/Microsoft.VisualStudio.2019.Enterprise.yaml new file mode 100644 index 000000000000..89cf73baefc1 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2019/Enterprise/16.11.58/Microsoft.VisualStudio.2019.Enterprise.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2019.Enterprise +PackageVersion: 16.11.58 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/2019/Professional/16.11.58/Microsoft.VisualStudio.2019.Professional.installer.yaml b/manifests/m/Microsoft/VisualStudio/2019/Professional/16.11.58/Microsoft.VisualStudio.2019.Professional.installer.yaml new file mode 100644 index 000000000000..c289377cc1fc --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2019/Professional/16.11.58/Microsoft.VisualStudio.2019.Professional.installer.yaml @@ -0,0 +1,93 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2019.Professional +PackageVersion: 16.11.58 +InstallerSwitches: + Silent: --quiet + SilentWithProgress: --passive + Upgrade: update + Custom: --wait --campaign "winget" +ExpectedReturnCodes: +- InstallerReturnCode: 1001 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1003 + ReturnResponse: fileInUse + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5004 + ReturnResponse: cancelledByUser + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8001 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8002 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8003 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8004 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8005 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8007 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8008 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8009 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -1073720687 + ReturnResponse: noNetwork + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -2146233083 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 740 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5001 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5002 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5003 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5005 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5007 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5008 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8006 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +Commands: +- devenv +Installers: +- Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/d93bcdb2-1c87-4eba-9ee3-734d20b5a8f3/1cebf875f36de91d9a74e3e51355ce4f19a2725a257147d3b0e66ab88e8c96ed/vs_Professional.exe + InstallerSha256: 1cebf875f36de91d9a74e3e51355ce4f19a2725a257147d3b0e66ab88e8c96ed +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/2019/Professional/16.11.58/Microsoft.VisualStudio.2019.Professional.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudio/2019/Professional/16.11.58/Microsoft.VisualStudio.2019.Professional.locale.en-US.yaml new file mode 100644 index 000000000000..d10d6384c8eb --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2019/Professional/16.11.58/Microsoft.VisualStudio.2019.Professional.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2019.Professional +PackageVersion: 16.11.58 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Visual Studio Professional 2019 +PackageUrl: https://visualstudio.microsoft.com/ +License: Proprietary +LicenseUrl: https://visualstudio.microsoft.com/license-terms/ +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +ShortDescription: The trusted IDE for professional developers - from desktop to cloud. +Moniker: vs2019-professional +Tags: +- c# +- c++ +- vs +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/2019/Professional/16.11.58/Microsoft.VisualStudio.2019.Professional.yaml b/manifests/m/Microsoft/VisualStudio/2019/Professional/16.11.58/Microsoft.VisualStudio.2019.Professional.yaml new file mode 100644 index 000000000000..e6c6f7c2bd80 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2019/Professional/16.11.58/Microsoft.VisualStudio.2019.Professional.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2019.Professional +PackageVersion: 16.11.58 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Community/18.8.0/Microsoft.VisualStudio.Community.installer.yaml b/manifests/m/Microsoft/VisualStudio/Community/18.8.0/Microsoft.VisualStudio.Community.installer.yaml new file mode 100644 index 000000000000..d155240ea2f1 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Community/18.8.0/Microsoft.VisualStudio.Community.installer.yaml @@ -0,0 +1,93 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Community +PackageVersion: 18.8.0 +InstallerSwitches: + Silent: --quiet + SilentWithProgress: --passive + Upgrade: update + Custom: --wait --campaign "winget" +ExpectedReturnCodes: +- InstallerReturnCode: 1001 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1003 + ReturnResponse: fileInUse + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5004 + ReturnResponse: cancelledByUser + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8001 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8002 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8003 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8004 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8005 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8007 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8008 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8009 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -1073720687 + ReturnResponse: noNetwork + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -2146233083 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 740 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5001 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5002 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5003 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5005 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5007 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5008 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8006 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +Commands: +- devenv +Installers: +- Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/e05c0bc8-d058-4b2b-937c-1c80073d7633/b7cc3e50be660def74981fcdac8e97636a90e1c1b00142c3e5210e99e8d8954c/vs_Community.exe + InstallerSha256: b7cc3e50be660def74981fcdac8e97636a90e1c1b00142c3e5210e99e8d8954c +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Community/18.8.0/Microsoft.VisualStudio.Community.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudio/Community/18.8.0/Microsoft.VisualStudio.Community.locale.en-US.yaml new file mode 100644 index 000000000000..e5c3cb1cf091 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Community/18.8.0/Microsoft.VisualStudio.Community.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Community +PackageVersion: 18.8.0 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Visual Studio Community 2026 +PackageUrl: https://visualstudio.microsoft.com/ +License: Proprietary +LicenseUrl: https://visualstudio.microsoft.com/license-terms/ +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +ShortDescription: Everything you need to build modern apps - free for you, built for impact. +Moniker: vs18-community +Tags: +- c# +- c++ +- vs +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Community/18.8.0/Microsoft.VisualStudio.Community.yaml b/manifests/m/Microsoft/VisualStudio/Community/18.8.0/Microsoft.VisualStudio.Community.yaml new file mode 100644 index 000000000000..b36f5c9301b4 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Community/18.8.0/Microsoft.VisualStudio.Community.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Community +PackageVersion: 18.8.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Enterprise/18.8.0/Microsoft.VisualStudio.Enterprise.installer.yaml b/manifests/m/Microsoft/VisualStudio/Enterprise/18.8.0/Microsoft.VisualStudio.Enterprise.installer.yaml new file mode 100644 index 000000000000..92bb4dcef636 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Enterprise/18.8.0/Microsoft.VisualStudio.Enterprise.installer.yaml @@ -0,0 +1,93 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Enterprise +PackageVersion: 18.8.0 +InstallerSwitches: + Silent: --quiet + SilentWithProgress: --passive + Upgrade: update + Custom: --wait --campaign "winget" +ExpectedReturnCodes: +- InstallerReturnCode: 1001 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1003 + ReturnResponse: fileInUse + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5004 + ReturnResponse: cancelledByUser + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8001 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8002 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8003 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8004 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8005 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8007 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8008 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8009 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -1073720687 + ReturnResponse: noNetwork + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -2146233083 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 740 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5001 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5002 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5003 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5005 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5007 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5008 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8006 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +Commands: +- devenv +Installers: +- Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/e05c0bc8-d058-4b2b-937c-1c80073d7633/4e4938d0e6d28853d29c7281aad83492b6efe8ce048ae6b41128ceecf83d623e/vs_Enterprise.exe + InstallerSha256: 4e4938d0e6d28853d29c7281aad83492b6efe8ce048ae6b41128ceecf83d623e +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Enterprise/18.8.0/Microsoft.VisualStudio.Enterprise.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudio/Enterprise/18.8.0/Microsoft.VisualStudio.Enterprise.locale.en-US.yaml new file mode 100644 index 000000000000..01e6ddb2aa02 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Enterprise/18.8.0/Microsoft.VisualStudio.Enterprise.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Enterprise +PackageVersion: 18.8.0 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Visual Studio Enterprise 2026 +PackageUrl: https://visualstudio.microsoft.com/ +License: Proprietary +LicenseUrl: https://visualstudio.microsoft.com/license-terms/ +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +ShortDescription: Built for scale, security, and speed - the IDE for complex, high-impact development. +Moniker: vs18-enterprise +Tags: +- c# +- c++ +- vs +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Enterprise/18.8.0/Microsoft.VisualStudio.Enterprise.yaml b/manifests/m/Microsoft/VisualStudio/Enterprise/18.8.0/Microsoft.VisualStudio.Enterprise.yaml new file mode 100644 index 000000000000..68c49ec4f62d --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Enterprise/18.8.0/Microsoft.VisualStudio.Enterprise.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Enterprise +PackageVersion: 18.8.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Professional/18.8.0/Microsoft.VisualStudio.Professional.installer.yaml b/manifests/m/Microsoft/VisualStudio/Professional/18.8.0/Microsoft.VisualStudio.Professional.installer.yaml new file mode 100644 index 000000000000..b2c21aa4641e --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Professional/18.8.0/Microsoft.VisualStudio.Professional.installer.yaml @@ -0,0 +1,93 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Professional +PackageVersion: 18.8.0 +InstallerSwitches: + Silent: --quiet + SilentWithProgress: --passive + Upgrade: update + Custom: --wait --campaign "winget" +ExpectedReturnCodes: +- InstallerReturnCode: 1001 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1003 + ReturnResponse: fileInUse + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5004 + ReturnResponse: cancelledByUser + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8001 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8002 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8003 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8004 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8005 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8007 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8008 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8009 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -1073720687 + ReturnResponse: noNetwork + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -2146233083 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 740 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5001 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5002 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5003 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5005 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5007 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5008 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8006 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +Commands: +- devenv +Installers: +- Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/e05c0bc8-d058-4b2b-937c-1c80073d7633/ab26b13eff80f367affb0fd42138ce763b85917c25a7209c4eb709b7b83c62dd/vs_Professional.exe + InstallerSha256: ab26b13eff80f367affb0fd42138ce763b85917c25a7209c4eb709b7b83c62dd +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Professional/18.8.0/Microsoft.VisualStudio.Professional.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudio/Professional/18.8.0/Microsoft.VisualStudio.Professional.locale.en-US.yaml new file mode 100644 index 000000000000..09d34eaccebc --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Professional/18.8.0/Microsoft.VisualStudio.Professional.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Professional +PackageVersion: 18.8.0 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Visual Studio Professional 2026 +PackageUrl: https://visualstudio.microsoft.com/ +License: Proprietary +LicenseUrl: https://visualstudio.microsoft.com/license-terms/ +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +ShortDescription: The trusted IDE for professional developers - from desktop to cloud. +Moniker: vs18-professional +Tags: +- c# +- c++ +- vs +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/Professional/18.8.0/Microsoft.VisualStudio.Professional.yaml b/manifests/m/Microsoft/VisualStudio/Professional/18.8.0/Microsoft.VisualStudio.Professional.yaml new file mode 100644 index 000000000000..a1d88b952bac --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/Professional/18.8.0/Microsoft.VisualStudio.Professional.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.Professional +PackageVersion: 18.8.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/WindowsApp/2.0.1247.0/Microsoft.WindowsApp.installer.yaml b/manifests/m/Microsoft/WindowsApp/2.0.1247.0/Microsoft.WindowsApp.installer.yaml new file mode 100644 index 000000000000..5253f68df912 --- /dev/null +++ b/manifests/m/Microsoft/WindowsApp/2.0.1247.0/Microsoft.WindowsApp.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Microsoft.WindowsApp +PackageVersion: 2.0.1247.0 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.17763.0 +InstallerType: msix +Protocols: +- ms-cloudpc +- ms-cp +- ms-remotedesktop +- ms-remotedesktop-launch +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCLibs.Desktop.14 +PackageFamilyName: MicrosoftCorporationII.Windows365_8wekyb3d8bbwe +Installers: +- Architecture: x86 + InstallerUrl: https://res.cdn.office.net/remote-desktop-windows-client/de7af349-5851-4629-8350-f62f2e62b93b/WindowsApp_x86_Release_2.0.1247.0.msix + InstallerSha256: 0061F7F1E5C055D8C5DDDCFE76FCF03390EE2230CCA93861818F43A7951A5D63 + SignatureSha256: 733F1D619C29165B2FED99B3474A996A8874D7CAD90EC5F67FA50868BD8B2283 +- Architecture: x64 + InstallerUrl: https://res.cdn.office.net/remote-desktop-windows-client/42efb6cc-587d-446c-bf6a-06ab47b5c7ed/WindowsApp_x64_Release_2.0.1247.0.msix + InstallerSha256: B83859DD5E7C729371C6AF8413AD2A1421D33623B031CFB08C332D8403219125 + SignatureSha256: 128E326590A472FCEED25668D39A1716B68A6DE0E942D3F008F360D230D6B5DD +- Architecture: arm64 + InstallerUrl: https://res.cdn.office.net/remote-desktop-windows-client/0dbe2147-d841-4904-992b-843d7c9cdce1/WindowsApp_arm64_Release_2.0.1247.0.msix + InstallerSha256: AC1903083AF8B63C82F87BF1DD298CA834A1EC20AE6BB619797E69F6C7C1BCDD + SignatureSha256: 21BC28E879F6BCADDB367CA6478E5A12DB22C83C4A6A7465EC70D9C3AD678741 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/WindowsApp/2.0.1247.0/Microsoft.WindowsApp.locale.en-US.yaml b/manifests/m/Microsoft/WindowsApp/2.0.1247.0/Microsoft.WindowsApp.locale.en-US.yaml new file mode 100644 index 000000000000..f17192cd7adf --- /dev/null +++ b/manifests/m/Microsoft/WindowsApp/2.0.1247.0/Microsoft.WindowsApp.locale.en-US.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Microsoft.WindowsApp +PackageVersion: 2.0.1247.0 +PackageLocale: en-US +Publisher: Microsoft Corp. +PublisherUrl: https://www.microsoft.com/ +PrivacyUrl: https://privacy.microsoft.com/privacystatement +Author: Microsoft Corporation +PackageName: Windows App +PackageUrl: https://learn.microsoft.com/windows-app/overview +License: Proprietary +LicenseUrl: https://learn.microsoft.com/legal/windows-app/windows-app-license-terms +Copyright: Copyright (c) 2026 Microsoft Corporation +CopyrightUrl: https://www.microsoft.com/legal/intellectualproperty/trademarks +ShortDescription: Windows App is your gateway to Azure Virtual Desktop, Windows 365, Microsoft Dev Box, Remote Desktop Services, and remote PCs, securely connecting you to Windows devices and apps on a device of your choice. +Description: |- + Windows App is your gateway to Azure Virtual Desktop, Windows 365, Microsoft Dev Box, Remote Desktop Services, and remote PCs, securely connecting you to Windows devices and apps. + You can use Windows App on many different types of devices on different platforms and form factors, such as desktops and laptops, tablets, smartphones, and through a web browser. When using a web browser on a desktop or laptop, you can connect without having to download and install any software. +Tags: +- remote-desktop +- virtual-desktop +ReleaseNotesUrl: https://learn.microsoft.com/windows-app/whats-new +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/WindowsApp/2.0.1247.0/Microsoft.WindowsApp.locale.zh-CN.yaml b/manifests/m/Microsoft/WindowsApp/2.0.1247.0/Microsoft.WindowsApp.locale.zh-CN.yaml new file mode 100644 index 000000000000..b0f2f47f1b80 --- /dev/null +++ b/manifests/m/Microsoft/WindowsApp/2.0.1247.0/Microsoft.WindowsApp.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: Microsoft.WindowsApp +PackageVersion: 2.0.1247.0 +PackageLocale: zh-CN +PrivacyUrl: https://privacy.microsoft.com/zh-cn/privacystatement +PackageUrl: https://learn.microsoft.com/zh-cn/windows-app/overview +License: 专有软件 +LicenseUrl: https://learn.microsoft.com/zh-cn/legal/windows-app/windows-app-license-terms +ShortDescription: Windows 应用是 Azure 虚拟桌面、Windows 365、Microsoft Dev Box Remote Desktop Services 和远程电脑的网关,可安全地将你连接到所选设备上的 Windows 设备和应用。 +Description: |- + Windows 应用是 Azure 虚拟桌面、Windows 365、Microsoft Dev Box、远程桌面服务和远程电脑的网关,可以安全地连接到 Windows 设备和应用。 + 你可以利用台式机、笔记本电脑、平板电脑、智能手机等多种不同外形的设备,在不同平台上使用 Windows 应用,也可以通过 Web 浏览器使用。在台式机和笔记本电脑上使用 Web 浏览器时,无需下载和安装任何软件即可进行连接。 +Tags: +- 虚拟桌面 +- 远程桌面 +ReleaseNotesUrl: https://learn.microsoft.com/zh-cn/windows-app/whats-new +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/WindowsApp/2.0.1247.0/Microsoft.WindowsApp.yaml b/manifests/m/Microsoft/WindowsApp/2.0.1247.0/Microsoft.WindowsApp.yaml new file mode 100644 index 000000000000..2ddd4ca41b6f --- /dev/null +++ b/manifests/m/Microsoft/WindowsApp/2.0.1247.0/Microsoft.WindowsApp.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: Microsoft.WindowsApp +PackageVersion: 2.0.1247.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/MiguelAngelRamirez/MyAgents/0.1.0/MiguelAngelRamirez.MyAgents.installer.yaml b/manifests/m/MiguelAngelRamirez/MyAgents/0.1.0/MiguelAngelRamirez.MyAgents.installer.yaml new file mode 100644 index 000000000000..7cad958e7f03 --- /dev/null +++ b/manifests/m/MiguelAngelRamirez/MyAgents/0.1.0/MiguelAngelRamirez.MyAgents.installer.yaml @@ -0,0 +1,14 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: MiguelAngelRamirez.MyAgents +PackageVersion: 0.1.0 +InstallerType: portable +Commands: +- myagents +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/miguelangelxramirez/MyAgents/releases/download/v0.1.0/MyAgents.exe + InstallerSha256: 28CDC3C64DE851D91700EA29E1E57413D5F53BE41863C2A57750CFC3339AEA8E +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/m/MiguelAngelRamirez/MyAgents/0.1.0/MiguelAngelRamirez.MyAgents.locale.en-US.yaml b/manifests/m/MiguelAngelRamirez/MyAgents/0.1.0/MiguelAngelRamirez.MyAgents.locale.en-US.yaml new file mode 100644 index 000000000000..f3884f0c70cd --- /dev/null +++ b/manifests/m/MiguelAngelRamirez/MyAgents/0.1.0/MiguelAngelRamirez.MyAgents.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.6.0.schema.json + +PackageIdentifier: MiguelAngelRamirez.MyAgents +PackageVersion: 0.1.0 +PackageLocale: en-US +Publisher: Miguel Angel Ramirez +PublisherUrl: https://github.com/miguelangelxramirez +PackageName: MyAgents +PackageUrl: https://github.com/miguelangelxramirez/MyAgents +License: MIT +LicenseUrl: https://github.com/miguelangelxramirez/MyAgents/blob/main/LICENSE +ShortDescription: Windows tray app that monitors all your Claude Code and Codex CLI sessions at once — live status, click-to-focus, and official 5h/7d usage bars. +Description: A lightweight Windows tray app that shows every running Claude Code and Codex session (in WSL and native Windows) with live status, lets you click a session to focus its terminal, and shows official 5h/7d usage bars captured from each CLI's own data — no tokens read, no undocumented endpoints called. +Tags: +- claude +- claude-code +- codex +- cli +- productivity +- wsl +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/m/MiguelAngelRamirez/MyAgents/0.1.0/MiguelAngelRamirez.MyAgents.yaml b/manifests/m/MiguelAngelRamirez/MyAgents/0.1.0/MiguelAngelRamirez.MyAgents.yaml new file mode 100644 index 000000000000..9ececaa031e5 --- /dev/null +++ b/manifests/m/MiguelAngelRamirez/MyAgents/0.1.0/MiguelAngelRamirez.MyAgents.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: MiguelAngelRamirez.MyAgents +PackageVersion: 0.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/m/MotionLabSystems/C3Dserver/1.204.8.1/MotionLabSystems.C3Dserver.installer.yaml b/manifests/m/MotionLabSystems/C3Dserver/1.204.8.1/MotionLabSystems.C3Dserver.installer.yaml new file mode 100644 index 000000000000..5783d5aa9771 --- /dev/null +++ b/manifests/m/MotionLabSystems/C3Dserver/1.204.8.1/MotionLabSystems.C3Dserver.installer.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: MotionLabSystems.C3Dserver +PackageVersion: 1.204.8.1 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{FFBDAF28-27F5-4043-BB8B-1720C5F82868}_is1' +ReleaseDate: 2020-01-27 +AppsAndFeaturesEntries: +- Publisher: Motion Lab Systems, Inc. + ProductCode: '{FFBDAF28-27F5-4043-BB8B-1720C5F82868}_is1' +ElevationRequirement: elevationRequired +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\Motion Lab Systems\C3Dserver' +Installers: +- Architecture: x86 + InstallerUrl: https://www.c3d.org/apps/C3Dserver_setup.exe + InstallerSha256: 2C95001D402E7B5A570976AC17597B9BBFD6183C2BBC541D0972A4241A4CD9FB +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/MotionLabSystems/C3Dserver/1.204.8.1/MotionLabSystems.C3Dserver.locale.en-US.yaml b/manifests/m/MotionLabSystems/C3Dserver/1.204.8.1/MotionLabSystems.C3Dserver.locale.en-US.yaml new file mode 100644 index 000000000000..23a9911f2c2a --- /dev/null +++ b/manifests/m/MotionLabSystems/C3Dserver/1.204.8.1/MotionLabSystems.C3Dserver.locale.en-US.yaml @@ -0,0 +1,18 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: MotionLabSystems.C3Dserver +PackageVersion: 1.204.8.1 +PackageLocale: en-US +Publisher: Motion Lab Systems, Inc. +PublisherUrl: https://www.motion-labs.com/ +PublisherSupportUrl: https://www.c3d.org/c3dsupport.html +Author: Motion Lab Systems, Inc. +PackageName: Motion Lab Systems C3Dserver +PackageUrl: https://www.c3d.org/c3dapps.html +License: Freeware +LicenseUrl: https://www.c3d.org/about.html +Copyright: Copyright © Motion Lab Systems +ShortDescription: C3D Software Development Kit providing access to C3D motion capture files from Windows applications. +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/MotionLabSystems/C3Dserver/1.204.8.1/MotionLabSystems.C3Dserver.yaml b/manifests/m/MotionLabSystems/C3Dserver/1.204.8.1/MotionLabSystems.C3Dserver.yaml new file mode 100644 index 000000000000..7b46907f95a4 --- /dev/null +++ b/manifests/m/MotionLabSystems/C3Dserver/1.204.8.1/MotionLabSystems.C3Dserver.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: MotionLabSystems.C3Dserver +PackageVersion: 1.204.8.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.installer.yaml b/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.installer.yaml new file mode 100644 index 000000000000..38340948ad82 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.af +PackageVersion: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/af/Firefox%20Setup%20152.0.6.exe + InstallerSha256: F5F552735B9269591AEEDDE0808BBD273D50A87EF2515CFF675C554676F3F4A1 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/af/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 212522FEF7F13A1B698C1C34732C6B8EDC0AAF2ED3CDAD1E566965DB24DFF97B +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/af/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 001CE5F5628C30A13CE9D606668E98308E10A4D0CE74450E65CB33617DCF1BA3 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.cs-CZ.yaml new file mode 100644 index 000000000000..3f698b8746f5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.af +PackageVersion: 152.0.6 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.da-DK.yaml new file mode 100644 index 000000000000..7c3ee5f4f97d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.af +PackageVersion: 152.0.6 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.de-DE.yaml new file mode 100644 index 000000000000..f6804a564e01 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.af +PackageVersion: 152.0.6 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.el-GR.yaml new file mode 100644 index 000000000000..b8b34af13bfa --- /dev/null +++ b/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.af +PackageVersion: 152.0.6 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.en-GB.yaml new file mode 100644 index 000000000000..9eac2c8fcb3d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.af +PackageVersion: 152.0.6 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.en-US.yaml new file mode 100644 index 000000000000..edad397c2ea3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.af +PackageVersion: 152.0.6 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (af) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.es-MX.yaml new file mode 100644 index 000000000000..ec5dde10822f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.af +PackageVersion: 152.0.6 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.fr-FR.yaml new file mode 100644 index 000000000000..434266aa2c44 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.af +PackageVersion: 152.0.6 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.hu-HU.yaml new file mode 100644 index 000000000000..903cd8d0bde6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.af +PackageVersion: 152.0.6 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.ja-JP.yaml new file mode 100644 index 000000000000..46d3bec6db3f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.af +PackageVersion: 152.0.6 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.nb-NO.yaml new file mode 100644 index 000000000000..85023d89f27e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.af +PackageVersion: 152.0.6 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.ru-RU.yaml new file mode 100644 index 000000000000..aaec4e113942 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.af +PackageVersion: 152.0.6 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.ta-IN.yaml new file mode 100644 index 000000000000..b47fd964fa62 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.af +PackageVersion: 152.0.6 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.zh-CN.yaml new file mode 100644 index 000000000000..dab07b3c1374 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.af +PackageVersion: 152.0.6 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.yaml b/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.yaml new file mode 100644 index 000000000000..b2de00498b52 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/af/152.0.6/Mozilla.Firefox.af.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.af +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/az/152.0.6/Mozilla.Firefox.az.installer.yaml b/manifests/m/Mozilla/Firefox/az/152.0.6/Mozilla.Firefox.az.installer.yaml new file mode 100644 index 000000000000..b4037da553e6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/az/152.0.6/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: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/az/Firefox%20Setup%20152.0.6.exe + InstallerSha256: DFB8C962362033426D025C885644E9F335A7D8C5DA312AACADE659237A2B3A01 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/az/Firefox%20Setup%20152.0.6.exe + InstallerSha256: EAB34EC9D69DB3066A88E9E7174B2125208FC4E1B44D5CE84BA54E654007F867 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/az/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 58587A8C296137000AB816549BC143ABC9F79085589036C27D771DDF5D77C2C8 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/az/152.0.6/Mozilla.Firefox.az.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/az/152.0.6/Mozilla.Firefox.az.locale.cs-CZ.yaml new file mode 100644 index 000000000000..8177549e548a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/az/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.az.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/az/152.0.6/Mozilla.Firefox.az.locale.da-DK.yaml new file mode 100644 index 000000000000..e75c13f35524 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/az/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.az.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/az/152.0.6/Mozilla.Firefox.az.locale.de-DE.yaml new file mode 100644 index 000000000000..34aeca681d4c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/az/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.az.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/az/152.0.6/Mozilla.Firefox.az.locale.el-GR.yaml new file mode 100644 index 000000000000..fb6ced0d72b2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/az/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.az.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/az/152.0.6/Mozilla.Firefox.az.locale.en-GB.yaml new file mode 100644 index 000000000000..71c445020d1f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/az/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.az.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/az/152.0.6/Mozilla.Firefox.az.locale.en-US.yaml new file mode 100644 index 000000000000..85903c9fce27 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/az/152.0.6/Mozilla.Firefox.az.locale.en-US.yaml @@ -0,0 +1,49 @@ +# 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: 152.0.6 +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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/az/152.0.6/Mozilla.Firefox.az.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/az/152.0.6/Mozilla.Firefox.az.locale.es-MX.yaml new file mode 100644 index 000000000000..7d8cccb45972 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/az/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.az.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/az/152.0.6/Mozilla.Firefox.az.locale.fr-FR.yaml new file mode 100644 index 000000000000..4792b0b68e1b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/az/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.az.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/az/152.0.6/Mozilla.Firefox.az.locale.hu-HU.yaml new file mode 100644 index 000000000000..2e0ba48a8f30 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/az/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.az.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/az/152.0.6/Mozilla.Firefox.az.locale.ja-JP.yaml new file mode 100644 index 000000000000..790072d73d6d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/az/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.az.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/az/152.0.6/Mozilla.Firefox.az.locale.nb-NO.yaml new file mode 100644 index 000000000000..1f7185f7d67a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/az/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.az.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/az/152.0.6/Mozilla.Firefox.az.locale.ru-RU.yaml new file mode 100644 index 000000000000..946c9afc2fb2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/az/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.az.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/az/152.0.6/Mozilla.Firefox.az.locale.ta-IN.yaml new file mode 100644 index 000000000000..769a1c44ac89 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/az/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.az.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/az/152.0.6/Mozilla.Firefox.az.locale.zh-CN.yaml new file mode 100644 index 000000000000..27ac0ee08b5e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/az/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.az.yaml b/manifests/m/Mozilla/Firefox/az/152.0.6/Mozilla.Firefox.az.yaml new file mode 100644 index 000000000000..eaf056c6ac1e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/az/152.0.6/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: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/152.0.6/Mozilla.Firefox.be.installer.yaml b/manifests/m/Mozilla/Firefox/be/152.0.6/Mozilla.Firefox.be.installer.yaml new file mode 100644 index 000000000000..d2f465fa2099 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/152.0.6/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: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/be/Firefox%20Setup%20152.0.6.exe + InstallerSha256: ACA1A189F28F2E65806A2CDF598637CBCACD23EBF7EF53B25E8B5022678C7D78 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/be/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 10C8039A6BFEBC90E225EFA84443115C21AE7B377F0019CC51F8C394E142CC1A +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/be/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 0E0F348FDEB6263D3CB8FA3A06B691E565CE2E305D67A95BF79D0418AFCA8E69 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/152.0.6/Mozilla.Firefox.be.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/be/152.0.6/Mozilla.Firefox.be.locale.cs-CZ.yaml new file mode 100644 index 000000000000..febf36384e35 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.be.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/be/152.0.6/Mozilla.Firefox.be.locale.da-DK.yaml new file mode 100644 index 000000000000..d1a856dfc08e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.be.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/be/152.0.6/Mozilla.Firefox.be.locale.de-DE.yaml new file mode 100644 index 000000000000..b2f3532fa8fd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.be.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/be/152.0.6/Mozilla.Firefox.be.locale.el-GR.yaml new file mode 100644 index 000000000000..f102c9700288 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.be.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/be/152.0.6/Mozilla.Firefox.be.locale.en-GB.yaml new file mode 100644 index 000000000000..66156baa4d9f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.be.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/be/152.0.6/Mozilla.Firefox.be.locale.en-US.yaml new file mode 100644 index 000000000000..64471d9fefa2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/152.0.6/Mozilla.Firefox.be.locale.en-US.yaml @@ -0,0 +1,49 @@ +# 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: 152.0.6 +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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/152.0.6/Mozilla.Firefox.be.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/be/152.0.6/Mozilla.Firefox.be.locale.es-MX.yaml new file mode 100644 index 000000000000..311160c35765 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.be.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/be/152.0.6/Mozilla.Firefox.be.locale.fr-FR.yaml new file mode 100644 index 000000000000..1c8afc44ee41 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.be.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/be/152.0.6/Mozilla.Firefox.be.locale.hu-HU.yaml new file mode 100644 index 000000000000..54f9ee821b90 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.be.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/be/152.0.6/Mozilla.Firefox.be.locale.ja-JP.yaml new file mode 100644 index 000000000000..c4b054286f7f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.be.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/be/152.0.6/Mozilla.Firefox.be.locale.nb-NO.yaml new file mode 100644 index 000000000000..56cad163eed9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.be.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/be/152.0.6/Mozilla.Firefox.be.locale.ru-RU.yaml new file mode 100644 index 000000000000..f0fbc7f4e20e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.be.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/be/152.0.6/Mozilla.Firefox.be.locale.ta-IN.yaml new file mode 100644 index 000000000000..7d6a4c611ac4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.be.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/be/152.0.6/Mozilla.Firefox.be.locale.zh-CN.yaml new file mode 100644 index 000000000000..950a6d89c712 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.be.yaml b/manifests/m/Mozilla/Firefox/be/152.0.6/Mozilla.Firefox.be.yaml new file mode 100644 index 000000000000..1074c95248df --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/152.0.6/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: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.installer.yaml b/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.installer.yaml new file mode 100644 index 000000000000..0813adc0cfe9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.bg +PackageVersion: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/bg/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 44E83FA46BA68494DCB961FCA2E5EE99E87478A6096BC6CA09A8070B01BDE376 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/bg/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 87BC183C817CB293EED67DFB87690E10D38E57FD4C71E4C98DDA7FD370B6CEA6 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/bg/Firefox%20Setup%20152.0.6.exe + InstallerSha256: F241CC15D39B90273AEE0B388C45B8BFFB6F932B55CBFA25DF8E5FF78FCFF145 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.cs-CZ.yaml new file mode 100644 index 000000000000..0225b5156c6e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.bg +PackageVersion: 152.0.6 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.da-DK.yaml new file mode 100644 index 000000000000..79ee6f13b01d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.bg +PackageVersion: 152.0.6 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.de-DE.yaml new file mode 100644 index 000000000000..bd51bc3b5c05 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.bg +PackageVersion: 152.0.6 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.el-GR.yaml new file mode 100644 index 000000000000..12c7da0bbe72 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.bg +PackageVersion: 152.0.6 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.en-GB.yaml new file mode 100644 index 000000000000..e62cfb41b880 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.bg +PackageVersion: 152.0.6 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.en-US.yaml new file mode 100644 index 000000000000..ab1921753722 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.bg +PackageVersion: 152.0.6 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (bg) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.es-MX.yaml new file mode 100644 index 000000000000..fff70ea131d8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.bg +PackageVersion: 152.0.6 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.fr-FR.yaml new file mode 100644 index 000000000000..1c5568c69c8e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.bg +PackageVersion: 152.0.6 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.hu-HU.yaml new file mode 100644 index 000000000000..07409b24eede --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.bg +PackageVersion: 152.0.6 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.ja-JP.yaml new file mode 100644 index 000000000000..8018d028f6f4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.bg +PackageVersion: 152.0.6 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.nb-NO.yaml new file mode 100644 index 000000000000..979a25298037 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.bg +PackageVersion: 152.0.6 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.ru-RU.yaml new file mode 100644 index 000000000000..fb25fe08f84f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.bg +PackageVersion: 152.0.6 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.ta-IN.yaml new file mode 100644 index 000000000000..9189eccd91a3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.bg +PackageVersion: 152.0.6 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.zh-CN.yaml new file mode 100644 index 000000000000..2d8f4b7e7095 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.bg +PackageVersion: 152.0.6 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.yaml b/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.yaml new file mode 100644 index 000000000000..1bcb704bc690 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bg/152.0.6/Mozilla.Firefox.bg.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.bg +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/152.0.6/Mozilla.Firefox.br.installer.yaml b/manifests/m/Mozilla/Firefox/br/152.0.6/Mozilla.Firefox.br.installer.yaml new file mode 100644 index 000000000000..7422f6e29d57 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/152.0.6/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: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/br/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 70A97B197655556ED2CD6BBB19F1D610699AB6963C477229EC089474151FADC6 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/br/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 47E3A31E2721987988CA836F2B626EE43305873E187442919590823CC4CDE097 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/br/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 464D4BF99FF3BD8771EB656A041913187A2A7FBE8E276D7299A0FBC7ED58EC46 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/152.0.6/Mozilla.Firefox.br.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/br/152.0.6/Mozilla.Firefox.br.locale.cs-CZ.yaml new file mode 100644 index 000000000000..0b0632f6fe06 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.br.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/br/152.0.6/Mozilla.Firefox.br.locale.da-DK.yaml new file mode 100644 index 000000000000..9923a527b26f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.br.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/br/152.0.6/Mozilla.Firefox.br.locale.de-DE.yaml new file mode 100644 index 000000000000..0637f5e25eae --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.br.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/br/152.0.6/Mozilla.Firefox.br.locale.el-GR.yaml new file mode 100644 index 000000000000..f7b518ec8473 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.br.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/br/152.0.6/Mozilla.Firefox.br.locale.en-GB.yaml new file mode 100644 index 000000000000..504c45499625 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.br.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/br/152.0.6/Mozilla.Firefox.br.locale.en-US.yaml new file mode 100644 index 000000000000..61968768721f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/152.0.6/Mozilla.Firefox.br.locale.en-US.yaml @@ -0,0 +1,49 @@ +# 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: 152.0.6 +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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/152.0.6/Mozilla.Firefox.br.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/br/152.0.6/Mozilla.Firefox.br.locale.es-MX.yaml new file mode 100644 index 000000000000..c2c58b55b16e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.br.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/br/152.0.6/Mozilla.Firefox.br.locale.fr-FR.yaml new file mode 100644 index 000000000000..d5436af45fe1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.br.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/br/152.0.6/Mozilla.Firefox.br.locale.hu-HU.yaml new file mode 100644 index 000000000000..06f366aa8019 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.br.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/br/152.0.6/Mozilla.Firefox.br.locale.ja-JP.yaml new file mode 100644 index 000000000000..164c303430bb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.br.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/br/152.0.6/Mozilla.Firefox.br.locale.nb-NO.yaml new file mode 100644 index 000000000000..f62d3dacec80 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.br.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/br/152.0.6/Mozilla.Firefox.br.locale.ru-RU.yaml new file mode 100644 index 000000000000..7299e9c80ff8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.br.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/br/152.0.6/Mozilla.Firefox.br.locale.ta-IN.yaml new file mode 100644 index 000000000000..1b60f7f2dc3d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.br.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/br/152.0.6/Mozilla.Firefox.br.locale.zh-CN.yaml new file mode 100644 index 000000000000..c820f454f1d4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.br.yaml b/manifests/m/Mozilla/Firefox/br/152.0.6/Mozilla.Firefox.br.yaml new file mode 100644 index 000000000000..eeebcae953fc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/152.0.6/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: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/bs/152.0.6/Mozilla.Firefox.bs.installer.yaml b/manifests/m/Mozilla/Firefox/bs/152.0.6/Mozilla.Firefox.bs.installer.yaml new file mode 100644 index 000000000000..e77c51b622fd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bs/152.0.6/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: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/bs/Firefox%20Setup%20152.0.6.exe + InstallerSha256: F1FE13FF92162CD097F5EF6AFF7BA2003CA3CE6DE86D460A82AA72A9976D924D +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/bs/Firefox%20Setup%20152.0.6.exe + InstallerSha256: CE32E8A28E4EFC549DD6DB74119C770B71FDE16B335BC0BAFFCF72A9BE40A857 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/bs/Firefox%20Setup%20152.0.6.exe + InstallerSha256: C9028B0DC9134AE4C02656CC02406C58013CEF9F7D46A899840BB860C1D1F12A +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/bs/152.0.6/Mozilla.Firefox.bs.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/bs/152.0.6/Mozilla.Firefox.bs.locale.cs-CZ.yaml new file mode 100644 index 000000000000..9a005887b015 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bs/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.bs.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/bs/152.0.6/Mozilla.Firefox.bs.locale.da-DK.yaml new file mode 100644 index 000000000000..ac75b3160b6c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bs/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.bs.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/bs/152.0.6/Mozilla.Firefox.bs.locale.de-DE.yaml new file mode 100644 index 000000000000..4d81e0ab2d29 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bs/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.bs.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/bs/152.0.6/Mozilla.Firefox.bs.locale.el-GR.yaml new file mode 100644 index 000000000000..548e3e16bc16 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bs/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.bs.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/bs/152.0.6/Mozilla.Firefox.bs.locale.en-GB.yaml new file mode 100644 index 000000000000..b4fbd31815a0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bs/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.bs.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/bs/152.0.6/Mozilla.Firefox.bs.locale.en-US.yaml new file mode 100644 index 000000000000..80b4aafb7dec --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bs/152.0.6/Mozilla.Firefox.bs.locale.en-US.yaml @@ -0,0 +1,49 @@ +# 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: 152.0.6 +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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/bs/152.0.6/Mozilla.Firefox.bs.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/bs/152.0.6/Mozilla.Firefox.bs.locale.es-MX.yaml new file mode 100644 index 000000000000..be79e26b96c9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bs/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.bs.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/bs/152.0.6/Mozilla.Firefox.bs.locale.fr-FR.yaml new file mode 100644 index 000000000000..f49275f3e773 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bs/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.bs.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/bs/152.0.6/Mozilla.Firefox.bs.locale.hu-HU.yaml new file mode 100644 index 000000000000..2d127015a72d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bs/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.bs.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/bs/152.0.6/Mozilla.Firefox.bs.locale.ja-JP.yaml new file mode 100644 index 000000000000..5af1f69b2d57 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bs/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.bs.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/bs/152.0.6/Mozilla.Firefox.bs.locale.nb-NO.yaml new file mode 100644 index 000000000000..6ea21839436a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bs/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.bs.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/bs/152.0.6/Mozilla.Firefox.bs.locale.ru-RU.yaml new file mode 100644 index 000000000000..c0ff8fcd9968 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bs/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.bs.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/bs/152.0.6/Mozilla.Firefox.bs.locale.ta-IN.yaml new file mode 100644 index 000000000000..355f1e5384c6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bs/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.bs.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/bs/152.0.6/Mozilla.Firefox.bs.locale.zh-CN.yaml new file mode 100644 index 000000000000..3bad200d97dc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bs/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.bs.yaml b/manifests/m/Mozilla/Firefox/bs/152.0.6/Mozilla.Firefox.bs.yaml new file mode 100644 index 000000000000..165dd7d085ab --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bs/152.0.6/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: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.installer.yaml b/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.installer.yaml new file mode 100644 index 000000000000..ac54b9851194 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.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-valencia +PackageVersion: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/ca-valencia/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 0585D5D39A58A092693E7B2F5D6075C2CA72A34D63995A30709E6B029ADFF7D6 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/ca-valencia/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 101DB01130D6CEE858FBB8613905292CC868A756608E46DF2569A973B3DCB8C8 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/ca-valencia/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 9D105FF4A70F4B36D4611A064C8892EA74372EA800855749F6F172B8C514F24B +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.locale.cs-CZ.yaml new file mode 100644 index 000000000000..beee6a07051e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.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-valencia +PackageVersion: 152.0.6 +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-valencia/152.0.6/Mozilla.Firefox.ca-valencia.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.locale.da-DK.yaml new file mode 100644 index 000000000000..3e7bbd3e7425 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.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-valencia +PackageVersion: 152.0.6 +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-valencia/152.0.6/Mozilla.Firefox.ca-valencia.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.locale.de-DE.yaml new file mode 100644 index 000000000000..086f8dea47cf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.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-valencia +PackageVersion: 152.0.6 +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-valencia/152.0.6/Mozilla.Firefox.ca-valencia.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.locale.el-GR.yaml new file mode 100644 index 000000000000..1985e0412905 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.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-valencia +PackageVersion: 152.0.6 +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-valencia/152.0.6/Mozilla.Firefox.ca-valencia.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.locale.en-GB.yaml new file mode 100644 index 000000000000..fd2bcb70879c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.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-valencia +PackageVersion: 152.0.6 +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-valencia/152.0.6/Mozilla.Firefox.ca-valencia.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.locale.en-US.yaml new file mode 100644 index 000000000000..0b5304a0dac9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.locale.en-US.yaml @@ -0,0 +1,49 @@ +# 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-valencia +PackageVersion: 152.0.6 +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-valencia) +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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.locale.es-MX.yaml new file mode 100644 index 000000000000..06393966eaad --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.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-valencia +PackageVersion: 152.0.6 +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-valencia/152.0.6/Mozilla.Firefox.ca-valencia.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.locale.fr-FR.yaml new file mode 100644 index 000000000000..2fdeb7417b5a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.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-valencia +PackageVersion: 152.0.6 +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-valencia/152.0.6/Mozilla.Firefox.ca-valencia.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.locale.hu-HU.yaml new file mode 100644 index 000000000000..77c9a841997e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.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-valencia +PackageVersion: 152.0.6 +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-valencia/152.0.6/Mozilla.Firefox.ca-valencia.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.locale.ja-JP.yaml new file mode 100644 index 000000000000..07f563e469de --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.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-valencia +PackageVersion: 152.0.6 +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-valencia/152.0.6/Mozilla.Firefox.ca-valencia.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.locale.nb-NO.yaml new file mode 100644 index 000000000000..7f33d6eff04d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.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-valencia +PackageVersion: 152.0.6 +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-valencia/152.0.6/Mozilla.Firefox.ca-valencia.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.locale.ru-RU.yaml new file mode 100644 index 000000000000..24e48889cfa7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.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-valencia +PackageVersion: 152.0.6 +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-valencia/152.0.6/Mozilla.Firefox.ca-valencia.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.locale.ta-IN.yaml new file mode 100644 index 000000000000..e80b76965372 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.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-valencia +PackageVersion: 152.0.6 +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-valencia/152.0.6/Mozilla.Firefox.ca-valencia.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.locale.zh-CN.yaml new file mode 100644 index 000000000000..b54a7c53470b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.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-valencia +PackageVersion: 152.0.6 +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-valencia/152.0.6/Mozilla.Firefox.ca-valencia.yaml b/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.yaml new file mode 100644 index 000000000000..b91ff67d8ca4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca-valencia/152.0.6/Mozilla.Firefox.ca-valencia.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-valencia +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ca/152.0.6/Mozilla.Firefox.ca.installer.yaml b/manifests/m/Mozilla/Firefox/ca/152.0.6/Mozilla.Firefox.ca.installer.yaml new file mode 100644 index 000000000000..2cb7403f4ae3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca/152.0.6/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: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/ca/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 4D222316A2DAF1E207A44F82C6B220361A8DB702C3DEDF709210E689242C6673 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/ca/Firefox%20Setup%20152.0.6.exe + InstallerSha256: E866ECADE8F416EFC5069754D87EB456BBE597A1DCD69757CE9BA2168920C5F2 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/ca/Firefox%20Setup%20152.0.6.exe + InstallerSha256: F25579871AB69EBFAFA8525740CA9F32595FF97A26E1956041F57CE34399E010 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ca/152.0.6/Mozilla.Firefox.ca.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/ca/152.0.6/Mozilla.Firefox.ca.locale.cs-CZ.yaml new file mode 100644 index 000000000000..7b6e4e91ebdf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ca.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/ca/152.0.6/Mozilla.Firefox.ca.locale.da-DK.yaml new file mode 100644 index 000000000000..9b6a4a538ddd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ca.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ca/152.0.6/Mozilla.Firefox.ca.locale.de-DE.yaml new file mode 100644 index 000000000000..ec0028ad372f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ca.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/ca/152.0.6/Mozilla.Firefox.ca.locale.el-GR.yaml new file mode 100644 index 000000000000..276731236107 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ca.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/ca/152.0.6/Mozilla.Firefox.ca.locale.en-GB.yaml new file mode 100644 index 000000000000..2bf7a516685f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ca.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ca/152.0.6/Mozilla.Firefox.ca.locale.en-US.yaml new file mode 100644 index 000000000000..0f50307de7b1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca/152.0.6/Mozilla.Firefox.ca.locale.en-US.yaml @@ -0,0 +1,49 @@ +# 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: 152.0.6 +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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ca/152.0.6/Mozilla.Firefox.ca.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/ca/152.0.6/Mozilla.Firefox.ca.locale.es-MX.yaml new file mode 100644 index 000000000000..ed397e128a59 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ca.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/ca/152.0.6/Mozilla.Firefox.ca.locale.fr-FR.yaml new file mode 100644 index 000000000000..821299e786fa --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ca.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/ca/152.0.6/Mozilla.Firefox.ca.locale.hu-HU.yaml new file mode 100644 index 000000000000..1ae403af816c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ca.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/ca/152.0.6/Mozilla.Firefox.ca.locale.ja-JP.yaml new file mode 100644 index 000000000000..9958699a1790 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ca.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/ca/152.0.6/Mozilla.Firefox.ca.locale.nb-NO.yaml new file mode 100644 index 000000000000..82dde274e0bb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ca.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/ca/152.0.6/Mozilla.Firefox.ca.locale.ru-RU.yaml new file mode 100644 index 000000000000..93d4409b79e0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ca.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/ca/152.0.6/Mozilla.Firefox.ca.locale.ta-IN.yaml new file mode 100644 index 000000000000..b6dae8b0840b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ca.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ca/152.0.6/Mozilla.Firefox.ca.locale.zh-CN.yaml new file mode 100644 index 000000000000..5acb1cd4f779 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ca.yaml b/manifests/m/Mozilla/Firefox/ca/152.0.6/Mozilla.Firefox.ca.yaml new file mode 100644 index 000000000000..2e9b7df5f200 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca/152.0.6/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: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.installer.yaml b/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.installer.yaml new file mode 100644 index 000000000000..9a84d979bfd3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.cak +PackageVersion: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/cak/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 31B8242D12B48E4FCC6ACE0732E3F8A04834479D6636A8BB7ED36966FD61F8A5 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/cak/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 693E6CA9982E07EC7F247D8FF41487B520F2EE056763AF538987587616A9DCC5 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/cak/Firefox%20Setup%20152.0.6.exe + InstallerSha256: C9D7C402CB4F30FAACBDE5D80EB9843A3C56BA7FCA410E170B69F9334BC37E44 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.cs-CZ.yaml new file mode 100644 index 000000000000..a00e4d17fd37 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.cak +PackageVersion: 152.0.6 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.da-DK.yaml new file mode 100644 index 000000000000..899d2b12006d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.cak +PackageVersion: 152.0.6 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.de-DE.yaml new file mode 100644 index 000000000000..06e7f509d169 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.cak +PackageVersion: 152.0.6 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.el-GR.yaml new file mode 100644 index 000000000000..ebcac4e156e4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.cak +PackageVersion: 152.0.6 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.en-GB.yaml new file mode 100644 index 000000000000..a21d3cabcf24 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.cak +PackageVersion: 152.0.6 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.en-US.yaml new file mode 100644 index 000000000000..88e8f1441aad --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.cak +PackageVersion: 152.0.6 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (cak) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.es-MX.yaml new file mode 100644 index 000000000000..d0e943ca1d8f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.cak +PackageVersion: 152.0.6 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.fr-FR.yaml new file mode 100644 index 000000000000..15e2836aaf7c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.cak +PackageVersion: 152.0.6 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.hu-HU.yaml new file mode 100644 index 000000000000..061836b0a1df --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.cak +PackageVersion: 152.0.6 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.ja-JP.yaml new file mode 100644 index 000000000000..9dc183efce4c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.cak +PackageVersion: 152.0.6 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.nb-NO.yaml new file mode 100644 index 000000000000..c6a0c4b46b3d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.cak +PackageVersion: 152.0.6 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.ru-RU.yaml new file mode 100644 index 000000000000..b5298bf11122 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.cak +PackageVersion: 152.0.6 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.ta-IN.yaml new file mode 100644 index 000000000000..3576734e4912 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.cak +PackageVersion: 152.0.6 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.zh-CN.yaml new file mode 100644 index 000000000000..5af59d410dc4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.cak +PackageVersion: 152.0.6 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.yaml b/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.yaml new file mode 100644 index 000000000000..c3a8856b2dd3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cak/152.0.6/Mozilla.Firefox.cak.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.cak +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.cs.installer.yaml b/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.cs.installer.yaml new file mode 100644 index 000000000000..328e355a8df8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.cs.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.cs +PackageVersion: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/cs/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 3731D003D313D24593BA4B2C6FA254C7A1BD394C13A3CAE933C1FCA9C95F7414 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/cs/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 21043EC723AF8A19299E49FDA004FFDA63D5CB4E17A57CBCD881057E411298F5 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/cs/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 336B36A12E54AD9AE5B9E6948FC0E96EB2E81C982046C15F943F3EA33C078A0B +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.cs.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.cs.locale.cs-CZ.yaml new file mode 100644 index 000000000000..adc086aadc72 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.cs.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.cs +PackageVersion: 152.0.6 +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/cs/152.0.6/Mozilla.Firefox.cs.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.cs.locale.da-DK.yaml new file mode 100644 index 000000000000..27d846d4307d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.cs.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.cs +PackageVersion: 152.0.6 +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/cs/152.0.6/Mozilla.Firefox.cs.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.cs.locale.de-DE.yaml new file mode 100644 index 000000000000..e362a04d3238 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.cs.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.cs +PackageVersion: 152.0.6 +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/cs/152.0.6/Mozilla.Firefox.cs.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.cs.locale.el-GR.yaml new file mode 100644 index 000000000000..c883cf0c592a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.cs.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.cs +PackageVersion: 152.0.6 +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/cs/152.0.6/Mozilla.Firefox.cs.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.cs.locale.en-GB.yaml new file mode 100644 index 000000000000..7398450a99f4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.cs.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.cs +PackageVersion: 152.0.6 +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/cs/152.0.6/Mozilla.Firefox.cs.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.cs.locale.en-US.yaml new file mode 100644 index 000000000000..f5f9665c4730 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.cs.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.cs +PackageVersion: 152.0.6 +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 (cs) +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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.cs.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.cs.locale.es-MX.yaml new file mode 100644 index 000000000000..119121aca583 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.cs.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.cs +PackageVersion: 152.0.6 +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/cs/152.0.6/Mozilla.Firefox.cs.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.cs.locale.fr-FR.yaml new file mode 100644 index 000000000000..f1b520dd60b3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.cs.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.cs +PackageVersion: 152.0.6 +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/cs/152.0.6/Mozilla.Firefox.cs.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.cs.locale.hu-HU.yaml new file mode 100644 index 000000000000..f80bf025c8eb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.cs.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.cs +PackageVersion: 152.0.6 +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/cs/152.0.6/Mozilla.Firefox.cs.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.cs.locale.ja-JP.yaml new file mode 100644 index 000000000000..e4a359e719f0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.cs.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.cs +PackageVersion: 152.0.6 +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/cs/152.0.6/Mozilla.Firefox.cs.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.cs.locale.nb-NO.yaml new file mode 100644 index 000000000000..9dc8aaecadff --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.cs.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.cs +PackageVersion: 152.0.6 +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/cs/152.0.6/Mozilla.Firefox.cs.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.cs.locale.ru-RU.yaml new file mode 100644 index 000000000000..1c748e1912ff --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.cs.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.cs +PackageVersion: 152.0.6 +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/cs/152.0.6/Mozilla.Firefox.cs.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.cs.locale.ta-IN.yaml new file mode 100644 index 000000000000..e9e8d2ade221 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.cs.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.cs +PackageVersion: 152.0.6 +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/cs/152.0.6/Mozilla.Firefox.cs.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.cs.locale.zh-CN.yaml new file mode 100644 index 000000000000..bb36c8d3d041 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.cs.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.cs +PackageVersion: 152.0.6 +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/cs/152.0.6/Mozilla.Firefox.cs.yaml b/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.cs.yaml new file mode 100644 index 000000000000..e1a3acdc4f65 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cs/152.0.6/Mozilla.Firefox.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.cs +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.installer.yaml b/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.installer.yaml new file mode 100644 index 000000000000..32b1e44c06ae --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.da +PackageVersion: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/da/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 8BA877A4A2CF421C9441F0B554B43F1DA0D664FA403EF050C1826DE778DF71F8 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/da/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 9FFA340FD077633208D45815E36A4FD880384ECCA1801639517C3CC49CA2D524 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/da/Firefox%20Setup%20152.0.6.exe + InstallerSha256: A0FDD4595D84A2C07A58DFBC8892CA7582FF4EAC29489D032E8871A916D0FDB2 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.cs-CZ.yaml new file mode 100644 index 000000000000..4f98f6cfbaad --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.da +PackageVersion: 152.0.6 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.da-DK.yaml new file mode 100644 index 000000000000..c3bf3e41ac7f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.da +PackageVersion: 152.0.6 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.de-DE.yaml new file mode 100644 index 000000000000..f40c8e4126f4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.da +PackageVersion: 152.0.6 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.el-GR.yaml new file mode 100644 index 000000000000..767e6ff56ad2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.da +PackageVersion: 152.0.6 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.en-GB.yaml new file mode 100644 index 000000000000..7aaa17be5970 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.da +PackageVersion: 152.0.6 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.en-US.yaml new file mode 100644 index 000000000000..cdab0c5c4497 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.da +PackageVersion: 152.0.6 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (da) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.es-MX.yaml new file mode 100644 index 000000000000..3b041dc75fe3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.da +PackageVersion: 152.0.6 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.fr-FR.yaml new file mode 100644 index 000000000000..e6d93096fa31 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.da +PackageVersion: 152.0.6 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.hu-HU.yaml new file mode 100644 index 000000000000..d4973b83d04a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.da +PackageVersion: 152.0.6 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.ja-JP.yaml new file mode 100644 index 000000000000..838b65363f53 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.da +PackageVersion: 152.0.6 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.nb-NO.yaml new file mode 100644 index 000000000000..9c5cf7876409 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.da +PackageVersion: 152.0.6 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.ru-RU.yaml new file mode 100644 index 000000000000..33e13b413aef --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.da +PackageVersion: 152.0.6 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.ta-IN.yaml new file mode 100644 index 000000000000..b05cd3233fec --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.da +PackageVersion: 152.0.6 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.zh-CN.yaml new file mode 100644 index 000000000000..988d2cdb3845 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.da +PackageVersion: 152.0.6 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.yaml b/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.yaml new file mode 100644 index 000000000000..28293ee9fb15 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/152.0.6/Mozilla.Firefox.da.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.da +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.installer.yaml b/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.installer.yaml new file mode 100644 index 000000000000..e003eb124711 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.el +PackageVersion: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/el/Firefox%20Setup%20152.0.6.exe + InstallerSha256: DFBC30AE54B53876D92EDB1E3A902A2ADF71350B148F89EE523491E0E523D57F +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/el/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 6F9A50D6488BB77163B7F9CB0C425F9610CAC436C9967A02AAB0D25F1B263E09 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/el/Firefox%20Setup%20152.0.6.exe + InstallerSha256: F7C28E75106847AE3320851C82147DF289C12FE8D22599C32EBD9CA5ED1BE5AA +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.cs-CZ.yaml new file mode 100644 index 000000000000..4ce58f449b58 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.el +PackageVersion: 152.0.6 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.da-DK.yaml new file mode 100644 index 000000000000..3911012a75a3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.el +PackageVersion: 152.0.6 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.de-DE.yaml new file mode 100644 index 000000000000..62bf7ed4350f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.el +PackageVersion: 152.0.6 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.el-GR.yaml new file mode 100644 index 000000000000..831ab8486aad --- /dev/null +++ b/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.el +PackageVersion: 152.0.6 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.en-GB.yaml new file mode 100644 index 000000000000..8a7d0f0bfa65 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.el +PackageVersion: 152.0.6 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.en-US.yaml new file mode 100644 index 000000000000..9cd310123166 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.el +PackageVersion: 152.0.6 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (el) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.es-MX.yaml new file mode 100644 index 000000000000..00958bf83cdb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.el +PackageVersion: 152.0.6 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.fr-FR.yaml new file mode 100644 index 000000000000..7bcfbad34684 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.el +PackageVersion: 152.0.6 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.hu-HU.yaml new file mode 100644 index 000000000000..1049c87552ef --- /dev/null +++ b/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.el +PackageVersion: 152.0.6 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.ja-JP.yaml new file mode 100644 index 000000000000..fa307cc521d5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.el +PackageVersion: 152.0.6 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.nb-NO.yaml new file mode 100644 index 000000000000..fb4226a9639e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.el +PackageVersion: 152.0.6 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.ru-RU.yaml new file mode 100644 index 000000000000..f15caa3dfa21 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.el +PackageVersion: 152.0.6 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.ta-IN.yaml new file mode 100644 index 000000000000..362aef2760fa --- /dev/null +++ b/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.el +PackageVersion: 152.0.6 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.zh-CN.yaml new file mode 100644 index 000000000000..73dba91df99a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.el +PackageVersion: 152.0.6 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.yaml b/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.yaml new file mode 100644 index 000000000000..10c34b565aa3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/el/152.0.6/Mozilla.Firefox.el.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.el +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.installer.yaml b/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.installer.yaml new file mode 100644 index 000000000000..ede6f921831c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.en-GB +PackageVersion: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/en-GB/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 0E45B3EF32E2997B3C8644291C4BF5947823ACDB15B17854B24E73F18DDD3A9D +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/en-GB/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 7785DB248BBE6FFC229F723F412F8B9518FFB5EB37F31BE8117BAB2E085B7C63 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/en-GB/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 014700F0C47613CB9C02A2B81D802DDCFE0383818CE040322EE3873DB1CBEE4B +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.cs-CZ.yaml new file mode 100644 index 000000000000..2cd034c96e82 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.en-GB +PackageVersion: 152.0.6 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.da-DK.yaml new file mode 100644 index 000000000000..08c3f5dc0d1a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.en-GB +PackageVersion: 152.0.6 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.de-DE.yaml new file mode 100644 index 000000000000..ac977d9b2338 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.en-GB +PackageVersion: 152.0.6 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.el-GR.yaml new file mode 100644 index 000000000000..3e2464100779 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.en-GB +PackageVersion: 152.0.6 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.en-GB.yaml new file mode 100644 index 000000000000..b4c12bc98bc3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.en-GB +PackageVersion: 152.0.6 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.en-US.yaml new file mode 100644 index 000000000000..b4f397f6642c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.en-GB +PackageVersion: 152.0.6 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (en-GB) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.es-MX.yaml new file mode 100644 index 000000000000..f3c3175da54f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.en-GB +PackageVersion: 152.0.6 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.fr-FR.yaml new file mode 100644 index 000000000000..1b95f977db7b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.en-GB +PackageVersion: 152.0.6 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.hu-HU.yaml new file mode 100644 index 000000000000..774a42931276 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.en-GB +PackageVersion: 152.0.6 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.ja-JP.yaml new file mode 100644 index 000000000000..80a1c87cef1c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.en-GB +PackageVersion: 152.0.6 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.nb-NO.yaml new file mode 100644 index 000000000000..da2f7a6cf42f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.en-GB +PackageVersion: 152.0.6 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.ru-RU.yaml new file mode 100644 index 000000000000..cbfd75c2c0a7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.en-GB +PackageVersion: 152.0.6 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.ta-IN.yaml new file mode 100644 index 000000000000..6707e189da90 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.en-GB +PackageVersion: 152.0.6 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.zh-CN.yaml new file mode 100644 index 000000000000..7cab96ad8a2c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.en-GB +PackageVersion: 152.0.6 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.yaml b/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.yaml new file mode 100644 index 000000000000..25957f2ed15b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-GB/152.0.6/Mozilla.Firefox.en-GB.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.en-GB +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.eo.installer.yaml b/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.eo.installer.yaml new file mode 100644 index 000000000000..722a4002d6e7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.eo.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.eo +PackageVersion: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/eo/Firefox%20Setup%20152.0.6.exe + InstallerSha256: FB4FE165D4E8CF4BDB71CCEFBE44D78DAC8E1937ED7BA3E589D72BF80D40311A +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/eo/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 7730D944BD4A16FBBDF75D3D8ACB59CC6A6B94E395A281DE6E6C190A2D451D30 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/eo/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 0A9062816207CB54303FFD6DBC6D701BE3D87E75B256BB62EB27654DC6047763 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.eo.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.eo.locale.cs-CZ.yaml new file mode 100644 index 000000000000..18d4b37c9ac9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.eo.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.eo +PackageVersion: 152.0.6 +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/eo/152.0.6/Mozilla.Firefox.eo.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.eo.locale.da-DK.yaml new file mode 100644 index 000000000000..8de31e52ac3e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.eo.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.eo +PackageVersion: 152.0.6 +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/eo/152.0.6/Mozilla.Firefox.eo.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.eo.locale.de-DE.yaml new file mode 100644 index 000000000000..fa50b4bed7d1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.eo.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.eo +PackageVersion: 152.0.6 +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/eo/152.0.6/Mozilla.Firefox.eo.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.eo.locale.el-GR.yaml new file mode 100644 index 000000000000..321449a9495e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.eo.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.eo +PackageVersion: 152.0.6 +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/eo/152.0.6/Mozilla.Firefox.eo.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.eo.locale.en-GB.yaml new file mode 100644 index 000000000000..fdfc3b1e7a2e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.eo.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.eo +PackageVersion: 152.0.6 +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/eo/152.0.6/Mozilla.Firefox.eo.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.eo.locale.en-US.yaml new file mode 100644 index 000000000000..3f5f59fd7e3f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.eo.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eo +PackageVersion: 152.0.6 +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 (eo) +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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.eo.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.eo.locale.es-MX.yaml new file mode 100644 index 000000000000..06eb7fcfe29d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.eo.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.eo +PackageVersion: 152.0.6 +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/eo/152.0.6/Mozilla.Firefox.eo.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.eo.locale.fr-FR.yaml new file mode 100644 index 000000000000..b4fc3e8e37a9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.eo.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.eo +PackageVersion: 152.0.6 +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/eo/152.0.6/Mozilla.Firefox.eo.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.eo.locale.hu-HU.yaml new file mode 100644 index 000000000000..c344649c5e4a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.eo.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.eo +PackageVersion: 152.0.6 +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/eo/152.0.6/Mozilla.Firefox.eo.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.eo.locale.ja-JP.yaml new file mode 100644 index 000000000000..5bfa3f99aec6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.eo.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.eo +PackageVersion: 152.0.6 +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/eo/152.0.6/Mozilla.Firefox.eo.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.eo.locale.nb-NO.yaml new file mode 100644 index 000000000000..1fcce09ee21e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.eo.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.eo +PackageVersion: 152.0.6 +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/eo/152.0.6/Mozilla.Firefox.eo.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.eo.locale.ru-RU.yaml new file mode 100644 index 000000000000..dcce9fc2676d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.eo.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.eo +PackageVersion: 152.0.6 +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/eo/152.0.6/Mozilla.Firefox.eo.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.eo.locale.ta-IN.yaml new file mode 100644 index 000000000000..8427604324a4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.eo.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.eo +PackageVersion: 152.0.6 +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/eo/152.0.6/Mozilla.Firefox.eo.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.eo.locale.zh-CN.yaml new file mode 100644 index 000000000000..1e94e5707fa8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.eo.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.eo +PackageVersion: 152.0.6 +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/eo/152.0.6/Mozilla.Firefox.eo.yaml b/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.eo.yaml new file mode 100644 index 000000000000..e2acbb732302 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eo/152.0.6/Mozilla.Firefox.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.eo +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/es-CL/152.0.6/Mozilla.Firefox.es-CL.installer.yaml b/manifests/m/Mozilla/Firefox/es-CL/152.0.6/Mozilla.Firefox.es-CL.installer.yaml new file mode 100644 index 000000000000..d32c0bd3f773 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-CL/152.0.6/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: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/es-CL/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 4FF21154AF2541979408C79EE99B1D0F435AFA7B097C70358D7464EBBF1C6C7D +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/es-CL/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 200815FF2780CEB742A7D54372B99754801412156A5728DE53368D6F516C4EE4 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/es-CL/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 1D09DE80E52D10B7DACDD25A49402FE52C51C56EBFE73A2A70497A788A197BE1 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/es-CL/152.0.6/Mozilla.Firefox.es-CL.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/es-CL/152.0.6/Mozilla.Firefox.es-CL.locale.cs-CZ.yaml new file mode 100644 index 000000000000..4d7e4102ae83 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-CL/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.es-CL.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/es-CL/152.0.6/Mozilla.Firefox.es-CL.locale.da-DK.yaml new file mode 100644 index 000000000000..cc81e7ef09bf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-CL/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.es-CL.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/es-CL/152.0.6/Mozilla.Firefox.es-CL.locale.de-DE.yaml new file mode 100644 index 000000000000..bccf468a7065 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-CL/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.es-CL.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/es-CL/152.0.6/Mozilla.Firefox.es-CL.locale.el-GR.yaml new file mode 100644 index 000000000000..4a4509aca032 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-CL/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.es-CL.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/es-CL/152.0.6/Mozilla.Firefox.es-CL.locale.en-GB.yaml new file mode 100644 index 000000000000..635308157d9a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-CL/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.es-CL.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/es-CL/152.0.6/Mozilla.Firefox.es-CL.locale.en-US.yaml new file mode 100644 index 000000000000..2c30452d2f2b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-CL/152.0.6/Mozilla.Firefox.es-CL.locale.en-US.yaml @@ -0,0 +1,49 @@ +# 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: 152.0.6 +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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/es-CL/152.0.6/Mozilla.Firefox.es-CL.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/es-CL/152.0.6/Mozilla.Firefox.es-CL.locale.es-MX.yaml new file mode 100644 index 000000000000..4c4a89f3e049 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-CL/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.es-CL.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/es-CL/152.0.6/Mozilla.Firefox.es-CL.locale.fr-FR.yaml new file mode 100644 index 000000000000..eaa2bd29d42b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-CL/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.es-CL.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/es-CL/152.0.6/Mozilla.Firefox.es-CL.locale.hu-HU.yaml new file mode 100644 index 000000000000..130a72ad25e0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-CL/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.es-CL.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/es-CL/152.0.6/Mozilla.Firefox.es-CL.locale.ja-JP.yaml new file mode 100644 index 000000000000..2a01eb9f66b2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-CL/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.es-CL.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/es-CL/152.0.6/Mozilla.Firefox.es-CL.locale.nb-NO.yaml new file mode 100644 index 000000000000..4171da17dcc0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-CL/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.es-CL.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/es-CL/152.0.6/Mozilla.Firefox.es-CL.locale.ru-RU.yaml new file mode 100644 index 000000000000..21e4815c6880 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-CL/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.es-CL.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/es-CL/152.0.6/Mozilla.Firefox.es-CL.locale.ta-IN.yaml new file mode 100644 index 000000000000..6977f07ef8f9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-CL/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.es-CL.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/es-CL/152.0.6/Mozilla.Firefox.es-CL.locale.zh-CN.yaml new file mode 100644 index 000000000000..1ad930513f01 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-CL/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.es-CL.yaml b/manifests/m/Mozilla/Firefox/es-CL/152.0.6/Mozilla.Firefox.es-CL.yaml new file mode 100644 index 000000000000..bba1b34d1d97 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-CL/152.0.6/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: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.es-ES.installer.yaml b/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.es-ES.installer.yaml new file mode 100644 index 000000000000..b92db23648e0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.es-ES.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-ES +PackageVersion: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/es-ES/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 112639048C9DE5C54497A73CF8DD2472A75646AC775EBA862CD45EDCC90AE2D4 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/es-ES/Firefox%20Setup%20152.0.6.exe + InstallerSha256: FA70CD884D3955D8EE2775420F5052D3D9EAF6E846EF2B7137CC789EFE788A88 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/es-ES/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 7DA69C6C833F7A64B3CFE53C384B8C675E3778A0D2048D076F007747A7DF5A54 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.es-ES.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.es-ES.locale.cs-CZ.yaml new file mode 100644 index 000000000000..791532f0739a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.es-ES.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-ES +PackageVersion: 152.0.6 +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-ES/152.0.6/Mozilla.Firefox.es-ES.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.es-ES.locale.da-DK.yaml new file mode 100644 index 000000000000..7c50e0272902 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.es-ES.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-ES +PackageVersion: 152.0.6 +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-ES/152.0.6/Mozilla.Firefox.es-ES.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.es-ES.locale.de-DE.yaml new file mode 100644 index 000000000000..0d7f2f9a8f07 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.es-ES.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-ES +PackageVersion: 152.0.6 +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-ES/152.0.6/Mozilla.Firefox.es-ES.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.es-ES.locale.el-GR.yaml new file mode 100644 index 000000000000..5a7789bca9c5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.es-ES.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-ES +PackageVersion: 152.0.6 +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-ES/152.0.6/Mozilla.Firefox.es-ES.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.es-ES.locale.en-GB.yaml new file mode 100644 index 000000000000..f5dc372a6aff --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.es-ES.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-ES +PackageVersion: 152.0.6 +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-ES/152.0.6/Mozilla.Firefox.es-ES.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.es-ES.locale.en-US.yaml new file mode 100644 index 000000000000..c9f1a6fadf83 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.es-ES.locale.en-US.yaml @@ -0,0 +1,49 @@ +# 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-ES +PackageVersion: 152.0.6 +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-ES) +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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.es-ES.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.es-ES.locale.es-MX.yaml new file mode 100644 index 000000000000..31381ea188c1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.es-ES.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-ES +PackageVersion: 152.0.6 +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-ES/152.0.6/Mozilla.Firefox.es-ES.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.es-ES.locale.fr-FR.yaml new file mode 100644 index 000000000000..e506c2aef223 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.es-ES.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-ES +PackageVersion: 152.0.6 +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-ES/152.0.6/Mozilla.Firefox.es-ES.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.es-ES.locale.hu-HU.yaml new file mode 100644 index 000000000000..3c3318bf0e82 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.es-ES.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-ES +PackageVersion: 152.0.6 +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-ES/152.0.6/Mozilla.Firefox.es-ES.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.es-ES.locale.ja-JP.yaml new file mode 100644 index 000000000000..66709a4c307a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.es-ES.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-ES +PackageVersion: 152.0.6 +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-ES/152.0.6/Mozilla.Firefox.es-ES.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.es-ES.locale.nb-NO.yaml new file mode 100644 index 000000000000..742de78d43cf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.es-ES.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-ES +PackageVersion: 152.0.6 +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-ES/152.0.6/Mozilla.Firefox.es-ES.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.es-ES.locale.ru-RU.yaml new file mode 100644 index 000000000000..897493ac4838 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.es-ES.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-ES +PackageVersion: 152.0.6 +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-ES/152.0.6/Mozilla.Firefox.es-ES.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.es-ES.locale.ta-IN.yaml new file mode 100644 index 000000000000..05b632709f40 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.es-ES.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-ES +PackageVersion: 152.0.6 +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-ES/152.0.6/Mozilla.Firefox.es-ES.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.es-ES.locale.zh-CN.yaml new file mode 100644 index 000000000000..01b7ef733cc0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.es-ES.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-ES +PackageVersion: 152.0.6 +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-ES/152.0.6/Mozilla.Firefox.es-ES.yaml b/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.es-ES.yaml new file mode 100644 index 000000000000..43e6943dd3e3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-ES/152.0.6/Mozilla.Firefox.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.es-ES +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.installer.yaml b/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.installer.yaml new file mode 100644 index 000000000000..b9e001f9bb98 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-MX +PackageVersion: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/es-MX/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 737160FA3A753EB00E3965CBFA9850AAE253BA92C7F6B90C48662EE32C94A80B +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/es-MX/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 94A0D2CA8CC03243C7A4380410BA5BAE7CEB86A7EDFFFA487FFF3B3E9F0F4B7A +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/es-MX/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 455A1D6B36FC59FBA266C3D7B7030936E2715625240221607E0031BDBF8EA0BE +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.cs-CZ.yaml new file mode 100644 index 000000000000..f219266c1ff4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-MX +PackageVersion: 152.0.6 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.da-DK.yaml new file mode 100644 index 000000000000..f314f589e77f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-MX +PackageVersion: 152.0.6 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.de-DE.yaml new file mode 100644 index 000000000000..103d01efa67f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-MX +PackageVersion: 152.0.6 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.el-GR.yaml new file mode 100644 index 000000000000..8198922e6dae --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-MX +PackageVersion: 152.0.6 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.en-GB.yaml new file mode 100644 index 000000000000..7fba02341c7e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-MX +PackageVersion: 152.0.6 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.en-US.yaml new file mode 100644 index 000000000000..3bbc2a6f888a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-MX +PackageVersion: 152.0.6 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (es-MX) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.es-MX.yaml new file mode 100644 index 000000000000..ba5a4891af7e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-MX +PackageVersion: 152.0.6 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.fr-FR.yaml new file mode 100644 index 000000000000..2e55e60bff92 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-MX +PackageVersion: 152.0.6 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.hu-HU.yaml new file mode 100644 index 000000000000..d9eab86b6397 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-MX +PackageVersion: 152.0.6 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.ja-JP.yaml new file mode 100644 index 000000000000..d5d9e050f481 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-MX +PackageVersion: 152.0.6 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.nb-NO.yaml new file mode 100644 index 000000000000..d3065fcf64c7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-MX +PackageVersion: 152.0.6 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.ru-RU.yaml new file mode 100644 index 000000000000..691d338ca507 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-MX +PackageVersion: 152.0.6 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.ta-IN.yaml new file mode 100644 index 000000000000..b119204da15d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-MX +PackageVersion: 152.0.6 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.zh-CN.yaml new file mode 100644 index 000000000000..97942c713a38 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-MX +PackageVersion: 152.0.6 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.yaml b/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.yaml new file mode 100644 index 000000000000..518e55a0433b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/152.0.6/Mozilla.Firefox.es-MX.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-MX +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/152.0.6/Mozilla.Firefox.ff.installer.yaml b/manifests/m/Mozilla/Firefox/ff/152.0.6/Mozilla.Firefox.ff.installer.yaml new file mode 100644 index 000000000000..ef97e837d1e2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/152.0.6/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: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/ff/Firefox%20Setup%20152.0.6.exe + InstallerSha256: EBF9990E5654808F0CE4AD6C851CD90F297007C589B9B36636EEA377374883D3 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/ff/Firefox%20Setup%20152.0.6.exe + InstallerSha256: AFEE98C6385658906EFF024FCF8A0A1061855657650048F91DFC42A595FB51A7 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/ff/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 2190B0162D292454B4AC3793D33168D575CC55F6FE2C74859E5F26FFAB91DFF2 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/152.0.6/Mozilla.Firefox.ff.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/ff/152.0.6/Mozilla.Firefox.ff.locale.cs-CZ.yaml new file mode 100644 index 000000000000..a3944b4673a1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ff.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/ff/152.0.6/Mozilla.Firefox.ff.locale.da-DK.yaml new file mode 100644 index 000000000000..66982bfa5784 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ff.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ff/152.0.6/Mozilla.Firefox.ff.locale.de-DE.yaml new file mode 100644 index 000000000000..6541e612275d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ff.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/ff/152.0.6/Mozilla.Firefox.ff.locale.el-GR.yaml new file mode 100644 index 000000000000..53482e1f14d1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ff.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/ff/152.0.6/Mozilla.Firefox.ff.locale.en-GB.yaml new file mode 100644 index 000000000000..1be01eb111f6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ff.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ff/152.0.6/Mozilla.Firefox.ff.locale.en-US.yaml new file mode 100644 index 000000000000..311f9b2d41c3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/152.0.6/Mozilla.Firefox.ff.locale.en-US.yaml @@ -0,0 +1,49 @@ +# 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: 152.0.6 +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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/152.0.6/Mozilla.Firefox.ff.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/ff/152.0.6/Mozilla.Firefox.ff.locale.es-MX.yaml new file mode 100644 index 000000000000..23e825d38b41 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ff.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/ff/152.0.6/Mozilla.Firefox.ff.locale.fr-FR.yaml new file mode 100644 index 000000000000..7273e81b16da --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ff.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/ff/152.0.6/Mozilla.Firefox.ff.locale.hu-HU.yaml new file mode 100644 index 000000000000..b3c03977d38a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ff.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/ff/152.0.6/Mozilla.Firefox.ff.locale.ja-JP.yaml new file mode 100644 index 000000000000..9a87cdc37063 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ff.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/ff/152.0.6/Mozilla.Firefox.ff.locale.nb-NO.yaml new file mode 100644 index 000000000000..fa5e7522f147 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ff.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/ff/152.0.6/Mozilla.Firefox.ff.locale.ru-RU.yaml new file mode 100644 index 000000000000..841d6d4e3eec --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ff.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/ff/152.0.6/Mozilla.Firefox.ff.locale.ta-IN.yaml new file mode 100644 index 000000000000..ecee5aa132be --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ff.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ff/152.0.6/Mozilla.Firefox.ff.locale.zh-CN.yaml new file mode 100644 index 000000000000..397f03dae057 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ff.yaml b/manifests/m/Mozilla/Firefox/ff/152.0.6/Mozilla.Firefox.ff.yaml new file mode 100644 index 000000000000..985018fe3a99 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/152.0.6/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: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/Mozilla.Firefox.ga-IE.installer.yaml b/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/Mozilla.Firefox.ga-IE.installer.yaml new file mode 100644 index 000000000000..5f58f401bed3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/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: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/ga-IE/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 97C1D3FF95557D5974C410560415CDC2CB7F2D8D20579372AE746BB7EEE25BDF +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/ga-IE/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 9B94F251E1174F06404EE056840F49C8EC851D1FF14FBCFC7D34F9F5D4FC09BF +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/ga-IE/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 4B12BD9D94E029BFD423844443E24A414E114C89153368CC6C5E07A7CACA676C +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/Mozilla.Firefox.ga-IE.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/Mozilla.Firefox.ga-IE.locale.cs-CZ.yaml new file mode 100644 index 000000000000..b4a5acab6410 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ga-IE.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/Mozilla.Firefox.ga-IE.locale.da-DK.yaml new file mode 100644 index 000000000000..d88de037d7e5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ga-IE.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/Mozilla.Firefox.ga-IE.locale.de-DE.yaml new file mode 100644 index 000000000000..726c1b264a66 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ga-IE.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/Mozilla.Firefox.ga-IE.locale.el-GR.yaml new file mode 100644 index 000000000000..5368a2e07661 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ga-IE.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/Mozilla.Firefox.ga-IE.locale.en-GB.yaml new file mode 100644 index 000000000000..6ff83f257d51 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ga-IE.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/Mozilla.Firefox.ga-IE.locale.en-US.yaml new file mode 100644 index 000000000000..ba00c11c7006 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/Mozilla.Firefox.ga-IE.locale.en-US.yaml @@ -0,0 +1,49 @@ +# 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: 152.0.6 +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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/Mozilla.Firefox.ga-IE.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/Mozilla.Firefox.ga-IE.locale.es-MX.yaml new file mode 100644 index 000000000000..67f405589053 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ga-IE.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/Mozilla.Firefox.ga-IE.locale.fr-FR.yaml new file mode 100644 index 000000000000..934ff3ca18aa --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ga-IE.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/Mozilla.Firefox.ga-IE.locale.hu-HU.yaml new file mode 100644 index 000000000000..40798e03eaa0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ga-IE.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/Mozilla.Firefox.ga-IE.locale.ja-JP.yaml new file mode 100644 index 000000000000..136d2978b5be --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ga-IE.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/Mozilla.Firefox.ga-IE.locale.nb-NO.yaml new file mode 100644 index 000000000000..53863ecbb5b9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ga-IE.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/Mozilla.Firefox.ga-IE.locale.ru-RU.yaml new file mode 100644 index 000000000000..663aeeeffa7b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ga-IE.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/Mozilla.Firefox.ga-IE.locale.ta-IN.yaml new file mode 100644 index 000000000000..1a9496665c63 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ga-IE.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/Mozilla.Firefox.ga-IE.locale.zh-CN.yaml new file mode 100644 index 000000000000..3ee1cf633938 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ga-IE.yaml b/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/Mozilla.Firefox.ga-IE.yaml new file mode 100644 index 000000000000..41818154b75c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ga-IE/152.0.6/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: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/he/152.0.6/Mozilla.Firefox.he.installer.yaml b/manifests/m/Mozilla/Firefox/he/152.0.6/Mozilla.Firefox.he.installer.yaml new file mode 100644 index 000000000000..06644ddb89b7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/he/152.0.6/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: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/he/Firefox%20Setup%20152.0.6.exe + InstallerSha256: D4E4D10CA4C670C56B6C202C8945B49DAD617596DD881AF1C12ED60F9EBE69D2 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/he/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 48F4F4C5861E619768E1F40F5DCA2572DC0BA86B4FCE6B49BF6C3BD4C2C88CE7 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/he/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 8B6A644537A7EF1C25FF6F4BEA92113234BFC0A1EC7A5AE9EE2500277A6E94EE +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/he/152.0.6/Mozilla.Firefox.he.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/he/152.0.6/Mozilla.Firefox.he.locale.cs-CZ.yaml new file mode 100644 index 000000000000..8b03bd3c93a9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/he/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.he.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/he/152.0.6/Mozilla.Firefox.he.locale.da-DK.yaml new file mode 100644 index 000000000000..59fa3117e3f1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/he/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.he.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/he/152.0.6/Mozilla.Firefox.he.locale.de-DE.yaml new file mode 100644 index 000000000000..6b345c960e06 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/he/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.he.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/he/152.0.6/Mozilla.Firefox.he.locale.el-GR.yaml new file mode 100644 index 000000000000..89e758f03f2e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/he/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.he.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/he/152.0.6/Mozilla.Firefox.he.locale.en-GB.yaml new file mode 100644 index 000000000000..ac383ad1273d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/he/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.he.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/he/152.0.6/Mozilla.Firefox.he.locale.en-US.yaml new file mode 100644 index 000000000000..a0e397d4a498 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/he/152.0.6/Mozilla.Firefox.he.locale.en-US.yaml @@ -0,0 +1,49 @@ +# 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: 152.0.6 +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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/he/152.0.6/Mozilla.Firefox.he.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/he/152.0.6/Mozilla.Firefox.he.locale.es-MX.yaml new file mode 100644 index 000000000000..4452412e6ff2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/he/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.he.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/he/152.0.6/Mozilla.Firefox.he.locale.fr-FR.yaml new file mode 100644 index 000000000000..0a2a92aa913c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/he/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.he.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/he/152.0.6/Mozilla.Firefox.he.locale.hu-HU.yaml new file mode 100644 index 000000000000..eca6227ef24a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/he/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.he.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/he/152.0.6/Mozilla.Firefox.he.locale.ja-JP.yaml new file mode 100644 index 000000000000..c6509957192a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/he/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.he.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/he/152.0.6/Mozilla.Firefox.he.locale.nb-NO.yaml new file mode 100644 index 000000000000..b0191dba66a5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/he/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.he.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/he/152.0.6/Mozilla.Firefox.he.locale.ru-RU.yaml new file mode 100644 index 000000000000..d99bc69fe1c8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/he/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.he.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/he/152.0.6/Mozilla.Firefox.he.locale.ta-IN.yaml new file mode 100644 index 000000000000..216e29cbffea --- /dev/null +++ b/manifests/m/Mozilla/Firefox/he/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.he.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/he/152.0.6/Mozilla.Firefox.he.locale.zh-CN.yaml new file mode 100644 index 000000000000..65e7e933f770 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/he/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.he.yaml b/manifests/m/Mozilla/Firefox/he/152.0.6/Mozilla.Firefox.he.yaml new file mode 100644 index 000000000000..b3152a23281e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/he/152.0.6/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: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.hi-IN.installer.yaml b/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.hi-IN.installer.yaml new file mode 100644 index 000000000000..51a8a8952948 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.hi-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.hi-IN +PackageVersion: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/hi-IN/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 8D56125B2FED3B1B6D9B25D610C67B8FD6D143950BC2B2B7054CD77AE8F44010 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/hi-IN/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 5F501334A5637139AA72BDCE7805EB60DC94D6900952B1EB05856CA6C0C51F51 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/hi-IN/Firefox%20Setup%20152.0.6.exe + InstallerSha256: A47A9CFE4AAA6BB45EE4109B3CAAD1BD151E282B535C284B75AE01ADC2A5B0F9 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.hi-IN.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.hi-IN.locale.cs-CZ.yaml new file mode 100644 index 000000000000..c815c32c1645 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.hi-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.hi-IN +PackageVersion: 152.0.6 +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/hi-IN/152.0.6/Mozilla.Firefox.hi-IN.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.hi-IN.locale.da-DK.yaml new file mode 100644 index 000000000000..a484ad482bf3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.hi-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.hi-IN +PackageVersion: 152.0.6 +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/hi-IN/152.0.6/Mozilla.Firefox.hi-IN.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.hi-IN.locale.de-DE.yaml new file mode 100644 index 000000000000..3dfb37babf5f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.hi-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.hi-IN +PackageVersion: 152.0.6 +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/hi-IN/152.0.6/Mozilla.Firefox.hi-IN.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.hi-IN.locale.el-GR.yaml new file mode 100644 index 000000000000..48348315b1f2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.hi-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.hi-IN +PackageVersion: 152.0.6 +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/hi-IN/152.0.6/Mozilla.Firefox.hi-IN.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.hi-IN.locale.en-GB.yaml new file mode 100644 index 000000000000..9f5210da8cc4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.hi-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.hi-IN +PackageVersion: 152.0.6 +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/hi-IN/152.0.6/Mozilla.Firefox.hi-IN.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.hi-IN.locale.en-US.yaml new file mode 100644 index 000000000000..16bc8cc6c295 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.hi-IN.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hi-IN +PackageVersion: 152.0.6 +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 (hi-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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.hi-IN.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.hi-IN.locale.es-MX.yaml new file mode 100644 index 000000000000..26c96329afe5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.hi-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.hi-IN +PackageVersion: 152.0.6 +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/hi-IN/152.0.6/Mozilla.Firefox.hi-IN.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.hi-IN.locale.fr-FR.yaml new file mode 100644 index 000000000000..6176c94e1909 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.hi-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.hi-IN +PackageVersion: 152.0.6 +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/hi-IN/152.0.6/Mozilla.Firefox.hi-IN.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.hi-IN.locale.hu-HU.yaml new file mode 100644 index 000000000000..7b05ed6d444d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.hi-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.hi-IN +PackageVersion: 152.0.6 +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/hi-IN/152.0.6/Mozilla.Firefox.hi-IN.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.hi-IN.locale.ja-JP.yaml new file mode 100644 index 000000000000..a5664348c717 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.hi-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.hi-IN +PackageVersion: 152.0.6 +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/hi-IN/152.0.6/Mozilla.Firefox.hi-IN.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.hi-IN.locale.nb-NO.yaml new file mode 100644 index 000000000000..d0deb82a5888 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.hi-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.hi-IN +PackageVersion: 152.0.6 +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/hi-IN/152.0.6/Mozilla.Firefox.hi-IN.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.hi-IN.locale.ru-RU.yaml new file mode 100644 index 000000000000..a598e00e7574 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.hi-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.hi-IN +PackageVersion: 152.0.6 +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/hi-IN/152.0.6/Mozilla.Firefox.hi-IN.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.hi-IN.locale.ta-IN.yaml new file mode 100644 index 000000000000..b8586432f290 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.hi-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.hi-IN +PackageVersion: 152.0.6 +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/hi-IN/152.0.6/Mozilla.Firefox.hi-IN.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.hi-IN.locale.zh-CN.yaml new file mode 100644 index 000000000000..a96099b07dc2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.hi-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.hi-IN +PackageVersion: 152.0.6 +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/hi-IN/152.0.6/Mozilla.Firefox.hi-IN.yaml b/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.hi-IN.yaml new file mode 100644 index 000000000000..7e88b0c1de5d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hi-IN/152.0.6/Mozilla.Firefox.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.hi-IN +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.installer.yaml b/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.installer.yaml new file mode 100644 index 000000000000..64958d8ab62c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.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.hr +PackageVersion: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/hr/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 5D48C09580AE6AFC5551E3ABE11AA26B19DB891E8C6438AFA8964308E978164C +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/hr/Firefox%20Setup%20152.0.6.exe + InstallerSha256: B8B17374C2FD033DFE482AC8097BD50F8D662B940585BDC4A36A509EA1446429 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/hr/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 31FAE6E5CF5C9B88A39A9D2070492F1D5F8D9E34048A828B5A96059977C368F1 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.locale.cs-CZ.yaml new file mode 100644 index 000000000000..c44bf91b127d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.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.hr +PackageVersion: 152.0.6 +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/hr/152.0.6/Mozilla.Firefox.hr.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.locale.da-DK.yaml new file mode 100644 index 000000000000..04fb83523206 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.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.hr +PackageVersion: 152.0.6 +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/hr/152.0.6/Mozilla.Firefox.hr.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.locale.de-DE.yaml new file mode 100644 index 000000000000..9597fcfbad09 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.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.hr +PackageVersion: 152.0.6 +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/hr/152.0.6/Mozilla.Firefox.hr.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.locale.el-GR.yaml new file mode 100644 index 000000000000..94f1f803c5f0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.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.hr +PackageVersion: 152.0.6 +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/hr/152.0.6/Mozilla.Firefox.hr.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.locale.en-GB.yaml new file mode 100644 index 000000000000..688e8b822e92 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.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.hr +PackageVersion: 152.0.6 +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/hr/152.0.6/Mozilla.Firefox.hr.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.locale.en-US.yaml new file mode 100644 index 000000000000..0249ea83d3e5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hr +PackageVersion: 152.0.6 +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 (hr) +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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.locale.es-MX.yaml new file mode 100644 index 000000000000..999255dbd378 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.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.hr +PackageVersion: 152.0.6 +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/hr/152.0.6/Mozilla.Firefox.hr.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.locale.fr-FR.yaml new file mode 100644 index 000000000000..bb506869afba --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.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.hr +PackageVersion: 152.0.6 +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/hr/152.0.6/Mozilla.Firefox.hr.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.locale.hu-HU.yaml new file mode 100644 index 000000000000..68244490ab9c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.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.hr +PackageVersion: 152.0.6 +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/hr/152.0.6/Mozilla.Firefox.hr.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.locale.ja-JP.yaml new file mode 100644 index 000000000000..c4b239c9705f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.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.hr +PackageVersion: 152.0.6 +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/hr/152.0.6/Mozilla.Firefox.hr.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.locale.nb-NO.yaml new file mode 100644 index 000000000000..94ee3186097a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.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.hr +PackageVersion: 152.0.6 +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/hr/152.0.6/Mozilla.Firefox.hr.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.locale.ru-RU.yaml new file mode 100644 index 000000000000..ab696aeece7d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.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.hr +PackageVersion: 152.0.6 +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/hr/152.0.6/Mozilla.Firefox.hr.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.locale.ta-IN.yaml new file mode 100644 index 000000000000..507861ed5730 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.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.hr +PackageVersion: 152.0.6 +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/hr/152.0.6/Mozilla.Firefox.hr.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.locale.zh-CN.yaml new file mode 100644 index 000000000000..1ae494742061 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.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.hr +PackageVersion: 152.0.6 +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/hr/152.0.6/Mozilla.Firefox.hr.yaml b/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.yaml new file mode 100644 index 000000000000..8c9da38cb11f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hr/152.0.6/Mozilla.Firefox.hr.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.hr +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.installer.yaml b/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.installer.yaml new file mode 100644 index 000000000000..5d62109b15ee --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.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.hu +PackageVersion: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/hu/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 79C08DCB2139AFC33E50AEE206A969E118FE9982FD08D0DA61B52A7D2389E099 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/hu/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 4DE0F179F5B82040C5BE5C0C34EE15A21AAEF2BAC9C22A17737F0EBA04016909 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/hu/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 5E5F3FD7358B1419ADAF7322F89A4BCE0F4C8B437530450C93BCDD7B243079DA +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.locale.cs-CZ.yaml new file mode 100644 index 000000000000..56d49014633d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.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.hu +PackageVersion: 152.0.6 +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/hu/152.0.6/Mozilla.Firefox.hu.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.locale.da-DK.yaml new file mode 100644 index 000000000000..00c8cdd9808f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.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.hu +PackageVersion: 152.0.6 +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/hu/152.0.6/Mozilla.Firefox.hu.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.locale.de-DE.yaml new file mode 100644 index 000000000000..3df2e978cff0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.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.hu +PackageVersion: 152.0.6 +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/hu/152.0.6/Mozilla.Firefox.hu.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.locale.el-GR.yaml new file mode 100644 index 000000000000..ad5caeb8984b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.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.hu +PackageVersion: 152.0.6 +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/hu/152.0.6/Mozilla.Firefox.hu.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.locale.en-GB.yaml new file mode 100644 index 000000000000..932474e5bdab --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.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.hu +PackageVersion: 152.0.6 +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/hu/152.0.6/Mozilla.Firefox.hu.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.locale.en-US.yaml new file mode 100644 index 000000000000..6251ad8b7b2a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hu +PackageVersion: 152.0.6 +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 (hu) +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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.locale.es-MX.yaml new file mode 100644 index 000000000000..aa7287464719 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.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.hu +PackageVersion: 152.0.6 +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/hu/152.0.6/Mozilla.Firefox.hu.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.locale.fr-FR.yaml new file mode 100644 index 000000000000..85999b3b6284 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.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.hu +PackageVersion: 152.0.6 +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/hu/152.0.6/Mozilla.Firefox.hu.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.locale.hu-HU.yaml new file mode 100644 index 000000000000..0d7b46bb0569 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.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.hu +PackageVersion: 152.0.6 +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/hu/152.0.6/Mozilla.Firefox.hu.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.locale.ja-JP.yaml new file mode 100644 index 000000000000..905550f25dbf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.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.hu +PackageVersion: 152.0.6 +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/hu/152.0.6/Mozilla.Firefox.hu.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.locale.nb-NO.yaml new file mode 100644 index 000000000000..b5ab9f90bb68 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.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.hu +PackageVersion: 152.0.6 +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/hu/152.0.6/Mozilla.Firefox.hu.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.locale.ru-RU.yaml new file mode 100644 index 000000000000..140762d11d3e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.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.hu +PackageVersion: 152.0.6 +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/hu/152.0.6/Mozilla.Firefox.hu.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.locale.ta-IN.yaml new file mode 100644 index 000000000000..9743ae14625c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.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.hu +PackageVersion: 152.0.6 +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/hu/152.0.6/Mozilla.Firefox.hu.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.locale.zh-CN.yaml new file mode 100644 index 000000000000..b84645dcc930 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.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.hu +PackageVersion: 152.0.6 +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/hu/152.0.6/Mozilla.Firefox.hu.yaml b/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.yaml new file mode 100644 index 000000000000..c6ded890cefe --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hu/152.0.6/Mozilla.Firefox.hu.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.hu +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/is/152.0.6/Mozilla.Firefox.is.installer.yaml b/manifests/m/Mozilla/Firefox/is/152.0.6/Mozilla.Firefox.is.installer.yaml new file mode 100644 index 000000000000..6128e4fb1543 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/152.0.6/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: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/is/Firefox%20Setup%20152.0.6.exe + InstallerSha256: A5544254E120943967D7BD468683292DFF0673F918D28679FB9959BD01ECDA00 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/is/Firefox%20Setup%20152.0.6.exe + InstallerSha256: C44AAA17657799B5E8FCB4C75E17F23C846B8445972645EAE3C81598EE43F611 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/is/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 5D11F312FE8293592F013EDDE1F9071006CB93C2BA2EEF995C8B49C4617D3881 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/is/152.0.6/Mozilla.Firefox.is.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/is/152.0.6/Mozilla.Firefox.is.locale.cs-CZ.yaml new file mode 100644 index 000000000000..575e78db9187 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.is.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/is/152.0.6/Mozilla.Firefox.is.locale.da-DK.yaml new file mode 100644 index 000000000000..bb73d26eaecd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.is.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/is/152.0.6/Mozilla.Firefox.is.locale.de-DE.yaml new file mode 100644 index 000000000000..529ceab18ae0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.is.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/is/152.0.6/Mozilla.Firefox.is.locale.el-GR.yaml new file mode 100644 index 000000000000..479212774aad --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.is.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/is/152.0.6/Mozilla.Firefox.is.locale.en-GB.yaml new file mode 100644 index 000000000000..96c62dcea78c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.is.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/is/152.0.6/Mozilla.Firefox.is.locale.en-US.yaml new file mode 100644 index 000000000000..086d531b6784 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/152.0.6/Mozilla.Firefox.is.locale.en-US.yaml @@ -0,0 +1,49 @@ +# 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: 152.0.6 +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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/is/152.0.6/Mozilla.Firefox.is.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/is/152.0.6/Mozilla.Firefox.is.locale.es-MX.yaml new file mode 100644 index 000000000000..80beb9f08e4a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.is.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/is/152.0.6/Mozilla.Firefox.is.locale.fr-FR.yaml new file mode 100644 index 000000000000..e132b95fad89 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.is.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/is/152.0.6/Mozilla.Firefox.is.locale.hu-HU.yaml new file mode 100644 index 000000000000..6f83850e411d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.is.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/is/152.0.6/Mozilla.Firefox.is.locale.ja-JP.yaml new file mode 100644 index 000000000000..5f74a878800f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.is.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/is/152.0.6/Mozilla.Firefox.is.locale.nb-NO.yaml new file mode 100644 index 000000000000..09283a498ed4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.is.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/is/152.0.6/Mozilla.Firefox.is.locale.ru-RU.yaml new file mode 100644 index 000000000000..64f72bf0004f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.is.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/is/152.0.6/Mozilla.Firefox.is.locale.ta-IN.yaml new file mode 100644 index 000000000000..08cc6606b6c6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.is.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/is/152.0.6/Mozilla.Firefox.is.locale.zh-CN.yaml new file mode 100644 index 000000000000..811a4e963f64 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.is.yaml b/manifests/m/Mozilla/Firefox/is/152.0.6/Mozilla.Firefox.is.yaml new file mode 100644 index 000000000000..1af710aadc9c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/152.0.6/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: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.installer.yaml b/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.installer.yaml new file mode 100644 index 000000000000..f837c13e4632 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kn +PackageVersion: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/kn/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 701548C744A8A879689FAD9B6D9E1EA5944A61008EBC4728A17447D546B1EEC4 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/kn/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 75CC60BAFD6B0BA718CDE506599D2E978E8E510FF4A56124CAD973A0181B433F +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/kn/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 1C059D11A8250C89E73D0889AB6C83E5ADADA90316C9CB9012D7F75A8AB0BC64 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.cs-CZ.yaml new file mode 100644 index 000000000000..3dc48088f384 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kn +PackageVersion: 152.0.6 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.da-DK.yaml new file mode 100644 index 000000000000..60aea25e8da0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kn +PackageVersion: 152.0.6 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.de-DE.yaml new file mode 100644 index 000000000000..098838927e2e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kn +PackageVersion: 152.0.6 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.el-GR.yaml new file mode 100644 index 000000000000..4cad01e2aee2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kn +PackageVersion: 152.0.6 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.en-GB.yaml new file mode 100644 index 000000000000..628fdbdce871 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kn +PackageVersion: 152.0.6 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.en-US.yaml new file mode 100644 index 000000000000..e0ba23b88036 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kn +PackageVersion: 152.0.6 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (kn) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.es-MX.yaml new file mode 100644 index 000000000000..5939e9cdab37 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kn +PackageVersion: 152.0.6 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.fr-FR.yaml new file mode 100644 index 000000000000..bc27db7bacb7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kn +PackageVersion: 152.0.6 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.hu-HU.yaml new file mode 100644 index 000000000000..18c6a604ea01 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kn +PackageVersion: 152.0.6 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.ja-JP.yaml new file mode 100644 index 000000000000..c63501e7b08e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kn +PackageVersion: 152.0.6 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.nb-NO.yaml new file mode 100644 index 000000000000..a327d67bea12 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kn +PackageVersion: 152.0.6 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.ru-RU.yaml new file mode 100644 index 000000000000..4d22b2d9048c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kn +PackageVersion: 152.0.6 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.ta-IN.yaml new file mode 100644 index 000000000000..0be6ed5bb6e9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kn +PackageVersion: 152.0.6 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.zh-CN.yaml new file mode 100644 index 000000000000..38eaf57b2510 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kn +PackageVersion: 152.0.6 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.yaml b/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.yaml new file mode 100644 index 000000000000..9b86cf1beebf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kn/152.0.6/Mozilla.Firefox.kn.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kn +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.installer.yaml b/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.installer.yaml new file mode 100644 index 000000000000..0df764cbfb5e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/mk/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 43B972333ED2E562389FAA994CA54D77FBF1CD3DBBF82E43AEC641F87BB2EC01 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/mk/Firefox%20Setup%20152.0.6.exe + InstallerSha256: F0EDECFCE15EE145B40052A5060CB307A504BBD315CB2DDFE819D67418E3C1D1 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/mk/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 91685DE3EE63FF7AC6F551F2010060736904173B9F8E3465616F98905D9F4B5A +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.cs-CZ.yaml new file mode 100644 index 000000000000..a985f9dd036d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: 152.0.6 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.da-DK.yaml new file mode 100644 index 000000000000..d00e56e8b262 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: 152.0.6 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.de-DE.yaml new file mode 100644 index 000000000000..aaf5652bac4c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: 152.0.6 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.el-GR.yaml new file mode 100644 index 000000000000..a326727e1234 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: 152.0.6 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.en-GB.yaml new file mode 100644 index 000000000000..d5290e95eecc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: 152.0.6 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.en-US.yaml new file mode 100644 index 000000000000..f4c003b52cdc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: 152.0.6 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (mk) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.es-MX.yaml new file mode 100644 index 000000000000..5a83f0cb4898 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: 152.0.6 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.fr-FR.yaml new file mode 100644 index 000000000000..628431154e6c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: 152.0.6 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.hu-HU.yaml new file mode 100644 index 000000000000..2425c9d5a340 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: 152.0.6 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.ja-JP.yaml new file mode 100644 index 000000000000..4dc98eb78ea9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: 152.0.6 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.nb-NO.yaml new file mode 100644 index 000000000000..88b05192980b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: 152.0.6 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.ru-RU.yaml new file mode 100644 index 000000000000..fba887a27145 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: 152.0.6 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.ta-IN.yaml new file mode 100644 index 000000000000..2359766c9ef0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: 152.0.6 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.zh-CN.yaml new file mode 100644 index 000000000000..54c67d35f8a5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: 152.0.6 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.yaml b/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.yaml new file mode 100644 index 000000000000..5e15edae2f1e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/152.0.6/Mozilla.Firefox.mk.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.installer.yaml b/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.installer.yaml new file mode 100644 index 000000000000..0730dec810e9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.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.mr +PackageVersion: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/mr/Firefox%20Setup%20152.0.6.exe + InstallerSha256: CEF76FC074FFD5291FEB142A48231E1A7E2B8167DF060BA0863EE819C0C8C524 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/mr/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 234C9599D10AEC7E851048E8FE775021FC04D47810F5A334B6E5AE57C48F2BC2 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/mr/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 30CB5CE2B4C6871280D115EDF00552E19C72AE0A082253D537869E85347A8E6D +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.locale.cs-CZ.yaml new file mode 100644 index 000000000000..a4ecfe1a1fda --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.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.mr +PackageVersion: 152.0.6 +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/mr/152.0.6/Mozilla.Firefox.mr.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.locale.da-DK.yaml new file mode 100644 index 000000000000..51290a104474 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.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.mr +PackageVersion: 152.0.6 +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/mr/152.0.6/Mozilla.Firefox.mr.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.locale.de-DE.yaml new file mode 100644 index 000000000000..918aaa410077 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.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.mr +PackageVersion: 152.0.6 +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/mr/152.0.6/Mozilla.Firefox.mr.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.locale.el-GR.yaml new file mode 100644 index 000000000000..4b937b51525f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.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.mr +PackageVersion: 152.0.6 +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/mr/152.0.6/Mozilla.Firefox.mr.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.locale.en-GB.yaml new file mode 100644 index 000000000000..0e32fb65ce08 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.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.mr +PackageVersion: 152.0.6 +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/mr/152.0.6/Mozilla.Firefox.mr.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.locale.en-US.yaml new file mode 100644 index 000000000000..d0dcfa2168fc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mr +PackageVersion: 152.0.6 +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 (mr) +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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.locale.es-MX.yaml new file mode 100644 index 000000000000..b4794beb38e7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.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.mr +PackageVersion: 152.0.6 +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/mr/152.0.6/Mozilla.Firefox.mr.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.locale.fr-FR.yaml new file mode 100644 index 000000000000..5d5cb077b7dd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.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.mr +PackageVersion: 152.0.6 +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/mr/152.0.6/Mozilla.Firefox.mr.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.locale.hu-HU.yaml new file mode 100644 index 000000000000..8a9f70fd0857 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.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.mr +PackageVersion: 152.0.6 +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/mr/152.0.6/Mozilla.Firefox.mr.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.locale.ja-JP.yaml new file mode 100644 index 000000000000..c55ed84f53c9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.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.mr +PackageVersion: 152.0.6 +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/mr/152.0.6/Mozilla.Firefox.mr.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.locale.nb-NO.yaml new file mode 100644 index 000000000000..96fb3cd0ea1b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.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.mr +PackageVersion: 152.0.6 +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/mr/152.0.6/Mozilla.Firefox.mr.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.locale.ru-RU.yaml new file mode 100644 index 000000000000..0ea422e19ec2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.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.mr +PackageVersion: 152.0.6 +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/mr/152.0.6/Mozilla.Firefox.mr.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.locale.ta-IN.yaml new file mode 100644 index 000000000000..7cea0869060b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.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.mr +PackageVersion: 152.0.6 +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/mr/152.0.6/Mozilla.Firefox.mr.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.locale.zh-CN.yaml new file mode 100644 index 000000000000..bd0ed3b1811e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.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.mr +PackageVersion: 152.0.6 +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/mr/152.0.6/Mozilla.Firefox.mr.yaml b/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.yaml new file mode 100644 index 000000000000..ddf0c7ae96eb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mr/152.0.6/Mozilla.Firefox.mr.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.mr +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.installer.yaml b/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.installer.yaml new file mode 100644 index 000000000000..cec5a792bf15 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.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.ms +PackageVersion: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/ms/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 1C4DCAF27B0E25AD165F20BE99036D2814D5877CA780B26695622B1A7AAAB52E +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/ms/Firefox%20Setup%20152.0.6.exe + InstallerSha256: A42CD6107E94F761947847604EEC98D5E8FE3459DAE4103F8BEAB7979371C3A7 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/ms/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 96F390B77DB9E98FC0BEC92C5C446AA6649FBFD0C270B9DB54981F403A5BC1E5 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.locale.cs-CZ.yaml new file mode 100644 index 000000000000..ad0e268f187e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.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.ms +PackageVersion: 152.0.6 +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/ms/152.0.6/Mozilla.Firefox.ms.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.locale.da-DK.yaml new file mode 100644 index 000000000000..32d9a0735681 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.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.ms +PackageVersion: 152.0.6 +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/ms/152.0.6/Mozilla.Firefox.ms.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.locale.de-DE.yaml new file mode 100644 index 000000000000..b084b30c2ff6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.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.ms +PackageVersion: 152.0.6 +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/ms/152.0.6/Mozilla.Firefox.ms.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.locale.el-GR.yaml new file mode 100644 index 000000000000..78e1ae1d704a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.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.ms +PackageVersion: 152.0.6 +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/ms/152.0.6/Mozilla.Firefox.ms.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.locale.en-GB.yaml new file mode 100644 index 000000000000..8d7d748dd506 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.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.ms +PackageVersion: 152.0.6 +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/ms/152.0.6/Mozilla.Firefox.ms.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.locale.en-US.yaml new file mode 100644 index 000000000000..d0115be76242 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ms +PackageVersion: 152.0.6 +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 (ms) +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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.locale.es-MX.yaml new file mode 100644 index 000000000000..1868ebe38da2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.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.ms +PackageVersion: 152.0.6 +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/ms/152.0.6/Mozilla.Firefox.ms.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.locale.fr-FR.yaml new file mode 100644 index 000000000000..753c7bbaf56e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.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.ms +PackageVersion: 152.0.6 +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/ms/152.0.6/Mozilla.Firefox.ms.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.locale.hu-HU.yaml new file mode 100644 index 000000000000..f062e1f64f11 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.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.ms +PackageVersion: 152.0.6 +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/ms/152.0.6/Mozilla.Firefox.ms.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.locale.ja-JP.yaml new file mode 100644 index 000000000000..3e83952a859c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.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.ms +PackageVersion: 152.0.6 +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/ms/152.0.6/Mozilla.Firefox.ms.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.locale.nb-NO.yaml new file mode 100644 index 000000000000..b5e2be2694cf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.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.ms +PackageVersion: 152.0.6 +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/ms/152.0.6/Mozilla.Firefox.ms.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.locale.ru-RU.yaml new file mode 100644 index 000000000000..4ccc14a8cd75 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.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.ms +PackageVersion: 152.0.6 +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/ms/152.0.6/Mozilla.Firefox.ms.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.locale.ta-IN.yaml new file mode 100644 index 000000000000..3af3c70d6e73 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.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.ms +PackageVersion: 152.0.6 +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/ms/152.0.6/Mozilla.Firefox.ms.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.locale.zh-CN.yaml new file mode 100644 index 000000000000..a5b4425d44b3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ms +PackageVersion: 152.0.6 +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/ms/152.0.6/Mozilla.Firefox.ms.yaml b/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.yaml new file mode 100644 index 000000000000..b0b7a26b958f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ms/152.0.6/Mozilla.Firefox.ms.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.ms +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.installer.yaml b/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.installer.yaml new file mode 100644 index 000000000000..cb20eab17a34 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.my +PackageVersion: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/my/Firefox%20Setup%20152.0.6.exe + InstallerSha256: F47467749E076BCBC22601AF5124B0A48600EBAEB942EA914C4139C3C4EEC2CC +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/my/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 653C50AE33A01589D5BE44455099F291A1DE684CD79D2E7B53E2629F9858D38D +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/my/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 3F67FB14DDE1ADDC27388311236CDFE1E76B0E574CEA1B05DF648E004B6285C3 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.cs-CZ.yaml new file mode 100644 index 000000000000..6bbbad15827f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.my +PackageVersion: 152.0.6 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.da-DK.yaml new file mode 100644 index 000000000000..70055601784f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.my +PackageVersion: 152.0.6 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.de-DE.yaml new file mode 100644 index 000000000000..510ab9ff6860 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.my +PackageVersion: 152.0.6 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.el-GR.yaml new file mode 100644 index 000000000000..643c115f6077 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.my +PackageVersion: 152.0.6 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.en-GB.yaml new file mode 100644 index 000000000000..7000924fd9e3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.my +PackageVersion: 152.0.6 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.en-US.yaml new file mode 100644 index 000000000000..b57b12db7e84 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.my +PackageVersion: 152.0.6 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (my) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.es-MX.yaml new file mode 100644 index 000000000000..96c64cc33209 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.my +PackageVersion: 152.0.6 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.fr-FR.yaml new file mode 100644 index 000000000000..f3c1ad82f74f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.my +PackageVersion: 152.0.6 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.hu-HU.yaml new file mode 100644 index 000000000000..886fcc2dc2e3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.my +PackageVersion: 152.0.6 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.ja-JP.yaml new file mode 100644 index 000000000000..aa0fba47947a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.my +PackageVersion: 152.0.6 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.nb-NO.yaml new file mode 100644 index 000000000000..2e2f3ff1a244 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.my +PackageVersion: 152.0.6 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.ru-RU.yaml new file mode 100644 index 000000000000..01b44b38a363 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.my +PackageVersion: 152.0.6 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.ta-IN.yaml new file mode 100644 index 000000000000..51dd1a4b8575 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.my +PackageVersion: 152.0.6 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.zh-CN.yaml new file mode 100644 index 000000000000..008074022f44 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.my +PackageVersion: 152.0.6 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.yaml b/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.yaml new file mode 100644 index 000000000000..52ab640cca63 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/152.0.6/Mozilla.Firefox.my.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.my +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.installer.yaml b/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.installer.yaml new file mode 100644 index 000000000000..4ab00fe3986f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.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.ne-NP +PackageVersion: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/ne-NP/Firefox%20Setup%20152.0.6.exe + InstallerSha256: B12047478BC941BC9B3906D24761C479B1BC80A56C1FA892682C5BBFFF85C84E +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/ne-NP/Firefox%20Setup%20152.0.6.exe + InstallerSha256: D622B55FEDE138E9801058DFEB762CBA9D27024B275967763844DDE0BF92C407 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/ne-NP/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 1542206B8866BB2FE3743F52810FF47EC3A8BDC1CD80827DF044E12D306B7327 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.locale.cs-CZ.yaml new file mode 100644 index 000000000000..c33ec2e9cbd1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.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.ne-NP +PackageVersion: 152.0.6 +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/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.locale.da-DK.yaml new file mode 100644 index 000000000000..89db630a247e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.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.ne-NP +PackageVersion: 152.0.6 +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/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.locale.de-DE.yaml new file mode 100644 index 000000000000..a9f38f820fd3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.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.ne-NP +PackageVersion: 152.0.6 +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/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.locale.el-GR.yaml new file mode 100644 index 000000000000..2c9d6dedd6b8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.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.ne-NP +PackageVersion: 152.0.6 +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/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.locale.en-GB.yaml new file mode 100644 index 000000000000..b70fa4eba9df --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.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.ne-NP +PackageVersion: 152.0.6 +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/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.locale.en-US.yaml new file mode 100644 index 000000000000..30293a53f980 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ne-NP +PackageVersion: 152.0.6 +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 (ne-NP) +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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.locale.es-MX.yaml new file mode 100644 index 000000000000..b333c2e43641 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.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.ne-NP +PackageVersion: 152.0.6 +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/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.locale.fr-FR.yaml new file mode 100644 index 000000000000..fc0834db5765 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.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.ne-NP +PackageVersion: 152.0.6 +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/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.locale.hu-HU.yaml new file mode 100644 index 000000000000..56cc9eb3d2c5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.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.ne-NP +PackageVersion: 152.0.6 +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/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.locale.ja-JP.yaml new file mode 100644 index 000000000000..53e67f5cb926 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.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.ne-NP +PackageVersion: 152.0.6 +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/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.locale.nb-NO.yaml new file mode 100644 index 000000000000..b89cb14c37af --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.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.ne-NP +PackageVersion: 152.0.6 +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/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.locale.ru-RU.yaml new file mode 100644 index 000000000000..94fd7adcde1b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.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.ne-NP +PackageVersion: 152.0.6 +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/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.locale.ta-IN.yaml new file mode 100644 index 000000000000..0fb0a033cd01 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.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.ne-NP +PackageVersion: 152.0.6 +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/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.locale.zh-CN.yaml new file mode 100644 index 000000000000..777ada624c66 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.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.ne-NP +PackageVersion: 152.0.6 +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/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.yaml b/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.ne-NP.yaml new file mode 100644 index 000000000000..c6e0bc524a40 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ne-NP/152.0.6/Mozilla.Firefox.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.ne-NP +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nl/152.0.6/Mozilla.Firefox.nl.installer.yaml b/manifests/m/Mozilla/Firefox/nl/152.0.6/Mozilla.Firefox.nl.installer.yaml new file mode 100644 index 000000000000..e58840248599 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/152.0.6/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: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/nl/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 5E756E8B1EE5592C04A2D613C403073BA7B3188F8EC31E5DECFDA9FF72B6A115 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/nl/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 4F2B75CEB76D940AC751737E6C2822AD0973AC308E6CD3034FF37F5BAAC61978 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/nl/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 8F113182A209C585564D3FE5415AEFEC0D58C9126FF5CFE68C907FFE364E3A4E +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nl/152.0.6/Mozilla.Firefox.nl.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/nl/152.0.6/Mozilla.Firefox.nl.locale.cs-CZ.yaml new file mode 100644 index 000000000000..f860d57e1d57 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.nl.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/nl/152.0.6/Mozilla.Firefox.nl.locale.da-DK.yaml new file mode 100644 index 000000000000..9afe9613a2bb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.nl.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/nl/152.0.6/Mozilla.Firefox.nl.locale.de-DE.yaml new file mode 100644 index 000000000000..3abb394b2873 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.nl.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/nl/152.0.6/Mozilla.Firefox.nl.locale.el-GR.yaml new file mode 100644 index 000000000000..1e998903b43f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.nl.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/nl/152.0.6/Mozilla.Firefox.nl.locale.en-GB.yaml new file mode 100644 index 000000000000..561dbd8f2b10 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.nl.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/nl/152.0.6/Mozilla.Firefox.nl.locale.en-US.yaml new file mode 100644 index 000000000000..af1473932cad --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/152.0.6/Mozilla.Firefox.nl.locale.en-US.yaml @@ -0,0 +1,49 @@ +# 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: 152.0.6 +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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nl/152.0.6/Mozilla.Firefox.nl.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/nl/152.0.6/Mozilla.Firefox.nl.locale.es-MX.yaml new file mode 100644 index 000000000000..6a808ead0bf1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.nl.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/nl/152.0.6/Mozilla.Firefox.nl.locale.fr-FR.yaml new file mode 100644 index 000000000000..8a9ffdbfb2f8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.nl.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/nl/152.0.6/Mozilla.Firefox.nl.locale.hu-HU.yaml new file mode 100644 index 000000000000..a1948ea30b62 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.nl.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/nl/152.0.6/Mozilla.Firefox.nl.locale.ja-JP.yaml new file mode 100644 index 000000000000..bc0248ae30d7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.nl.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/nl/152.0.6/Mozilla.Firefox.nl.locale.nb-NO.yaml new file mode 100644 index 000000000000..9cdc6df269ae --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.nl.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/nl/152.0.6/Mozilla.Firefox.nl.locale.ru-RU.yaml new file mode 100644 index 000000000000..73424551641f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.nl.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/nl/152.0.6/Mozilla.Firefox.nl.locale.ta-IN.yaml new file mode 100644 index 000000000000..ea9c5f74bd00 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.nl.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/nl/152.0.6/Mozilla.Firefox.nl.locale.zh-CN.yaml new file mode 100644 index 000000000000..53aa1015636f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.nl.yaml b/manifests/m/Mozilla/Firefox/nl/152.0.6/Mozilla.Firefox.nl.yaml new file mode 100644 index 000000000000..48528759cd88 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/152.0.6/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: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.installer.yaml b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.installer.yaml new file mode 100644 index 000000000000..e6189b2b72b1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/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: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/pt-PT/Firefox%20Setup%20152.0.6.exe + InstallerSha256: A8BD29FA76D7C6DD23ACA651E689B72BD9C4C1FC238270A4946ACCB0CA7754D0 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/pt-PT/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 26A28FE27EB137B8E87413F831463DF61C946DDC83B89E0392980323B25224FA +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/pt-PT/Firefox%20Setup%20152.0.6.exe + InstallerSha256: F68E32E6E6B5BD7E618C247BA0871F7F6866ACB1F7F396F687513DA1742E5BFA +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.cs-CZ.yaml new file mode 100644 index 000000000000..78acb250f8f9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.pt-PT.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.da-DK.yaml new file mode 100644 index 000000000000..1c1c89a7aeed --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.pt-PT.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.de-DE.yaml new file mode 100644 index 000000000000..4c0f5679763e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.pt-PT.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.el-GR.yaml new file mode 100644 index 000000000000..ee11d1fe6591 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.pt-PT.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.en-GB.yaml new file mode 100644 index 000000000000..3871ecb58754 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.pt-PT.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.en-US.yaml new file mode 100644 index 000000000000..eb0409ecab2e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.en-US.yaml @@ -0,0 +1,49 @@ +# 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: 152.0.6 +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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.es-MX.yaml new file mode 100644 index 000000000000..014abf51505a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.pt-PT.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.fr-FR.yaml new file mode 100644 index 000000000000..f0998acfe156 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.pt-PT.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.hu-HU.yaml new file mode 100644 index 000000000000..f181d9fa87d0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.pt-PT.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.ja-JP.yaml new file mode 100644 index 000000000000..9330fc26ccfb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.pt-PT.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.nb-NO.yaml new file mode 100644 index 000000000000..650acbe88f86 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.pt-PT.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.ru-RU.yaml new file mode 100644 index 000000000000..25c7cf77d41f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.pt-PT.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.ta-IN.yaml new file mode 100644 index 000000000000..640866c743fe --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.pt-PT.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.locale.zh-CN.yaml new file mode 100644 index 000000000000..99a3e8ec58ef --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.pt-PT.yaml b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/Mozilla.Firefox.pt-PT.yaml new file mode 100644 index 000000000000..0c82472c8cea --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/152.0.6/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: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.installer.yaml b/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.installer.yaml new file mode 100644 index 000000000000..a5b068982b93 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.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.rm +PackageVersion: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/rm/Firefox%20Setup%20152.0.6.exe + InstallerSha256: FE75FBC31A974C342B6A2B6CBE411EE226E1056F81A2E74A6241C04F37ADAAC3 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/rm/Firefox%20Setup%20152.0.6.exe + InstallerSha256: C28C2DF51B85A297F5FF89C4BB9E88CF9D9E5D8545D7840C7FF43A320DBAA4D2 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/rm/Firefox%20Setup%20152.0.6.exe + InstallerSha256: EFFB23243952D78FC5E727343CDCC44C3A5ACC2BAB5945366BBC999E5758820C +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.locale.cs-CZ.yaml new file mode 100644 index 000000000000..bf8a5700e260 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.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.rm +PackageVersion: 152.0.6 +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/rm/152.0.6/Mozilla.Firefox.rm.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.locale.da-DK.yaml new file mode 100644 index 000000000000..edbd9c9a1ff4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.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.rm +PackageVersion: 152.0.6 +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/rm/152.0.6/Mozilla.Firefox.rm.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.locale.de-DE.yaml new file mode 100644 index 000000000000..141435e4304e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.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.rm +PackageVersion: 152.0.6 +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/rm/152.0.6/Mozilla.Firefox.rm.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.locale.el-GR.yaml new file mode 100644 index 000000000000..2546a4c39c51 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.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.rm +PackageVersion: 152.0.6 +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/rm/152.0.6/Mozilla.Firefox.rm.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.locale.en-GB.yaml new file mode 100644 index 000000000000..7c9964d86950 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.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.rm +PackageVersion: 152.0.6 +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/rm/152.0.6/Mozilla.Firefox.rm.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.locale.en-US.yaml new file mode 100644 index 000000000000..10323e19e9d9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.rm +PackageVersion: 152.0.6 +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 (rm) +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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.locale.es-MX.yaml new file mode 100644 index 000000000000..5923587b99c3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.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.rm +PackageVersion: 152.0.6 +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/rm/152.0.6/Mozilla.Firefox.rm.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.locale.fr-FR.yaml new file mode 100644 index 000000000000..a460aa28c8ba --- /dev/null +++ b/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.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.rm +PackageVersion: 152.0.6 +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/rm/152.0.6/Mozilla.Firefox.rm.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.locale.hu-HU.yaml new file mode 100644 index 000000000000..7e409d72dd96 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.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.rm +PackageVersion: 152.0.6 +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/rm/152.0.6/Mozilla.Firefox.rm.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.locale.ja-JP.yaml new file mode 100644 index 000000000000..b5c14751a85f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.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.rm +PackageVersion: 152.0.6 +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/rm/152.0.6/Mozilla.Firefox.rm.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.locale.nb-NO.yaml new file mode 100644 index 000000000000..085101658120 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.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.rm +PackageVersion: 152.0.6 +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/rm/152.0.6/Mozilla.Firefox.rm.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.locale.ru-RU.yaml new file mode 100644 index 000000000000..8fa92a6d554d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.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.rm +PackageVersion: 152.0.6 +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/rm/152.0.6/Mozilla.Firefox.rm.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.locale.ta-IN.yaml new file mode 100644 index 000000000000..d6b607c97bb2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.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.rm +PackageVersion: 152.0.6 +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/rm/152.0.6/Mozilla.Firefox.rm.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.locale.zh-CN.yaml new file mode 100644 index 000000000000..6de8ee12c81a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.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.rm +PackageVersion: 152.0.6 +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/rm/152.0.6/Mozilla.Firefox.rm.yaml b/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.yaml new file mode 100644 index 000000000000..90f75119059c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/rm/152.0.6/Mozilla.Firefox.rm.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.rm +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.installer.yaml b/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.installer.yaml new file mode 100644 index 000000000000..faae221ed985 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.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.ro +PackageVersion: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/ro/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 795FD94CBB6851013ED43EEF6ADFA6A3524A650EDEE672652A3AF0969F6AC555 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/ro/Firefox%20Setup%20152.0.6.exe + InstallerSha256: E0E8A9923BFE2B99FE680FC4F3376C1D8CCF578B0B0943F75488296D05E54087 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/ro/Firefox%20Setup%20152.0.6.exe + InstallerSha256: BF8E55F9F1ED8E0AACC805CBD1FA407ACB30A0ECB46BFCA5998222994F069843 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.locale.cs-CZ.yaml new file mode 100644 index 000000000000..8dae30216e35 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.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.ro +PackageVersion: 152.0.6 +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/ro/152.0.6/Mozilla.Firefox.ro.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.locale.da-DK.yaml new file mode 100644 index 000000000000..98759d7cfdf8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.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.ro +PackageVersion: 152.0.6 +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/ro/152.0.6/Mozilla.Firefox.ro.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.locale.de-DE.yaml new file mode 100644 index 000000000000..3ec22f234dc9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.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.ro +PackageVersion: 152.0.6 +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/ro/152.0.6/Mozilla.Firefox.ro.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.locale.el-GR.yaml new file mode 100644 index 000000000000..cb57b129410b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.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.ro +PackageVersion: 152.0.6 +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/ro/152.0.6/Mozilla.Firefox.ro.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.locale.en-GB.yaml new file mode 100644 index 000000000000..62c246e028e1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.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.ro +PackageVersion: 152.0.6 +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/ro/152.0.6/Mozilla.Firefox.ro.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.locale.en-US.yaml new file mode 100644 index 000000000000..88848d492ba9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ro +PackageVersion: 152.0.6 +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 (ro) +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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.locale.es-MX.yaml new file mode 100644 index 000000000000..fc872a85b645 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.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.ro +PackageVersion: 152.0.6 +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/ro/152.0.6/Mozilla.Firefox.ro.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.locale.fr-FR.yaml new file mode 100644 index 000000000000..8fc0874f89b1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.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.ro +PackageVersion: 152.0.6 +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/ro/152.0.6/Mozilla.Firefox.ro.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.locale.hu-HU.yaml new file mode 100644 index 000000000000..2d6a445fa765 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.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.ro +PackageVersion: 152.0.6 +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/ro/152.0.6/Mozilla.Firefox.ro.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.locale.ja-JP.yaml new file mode 100644 index 000000000000..554aefb6eda5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.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.ro +PackageVersion: 152.0.6 +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/ro/152.0.6/Mozilla.Firefox.ro.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.locale.nb-NO.yaml new file mode 100644 index 000000000000..19493a43bdff --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.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.ro +PackageVersion: 152.0.6 +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/ro/152.0.6/Mozilla.Firefox.ro.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.locale.ru-RU.yaml new file mode 100644 index 000000000000..83280e9523a9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.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.ro +PackageVersion: 152.0.6 +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/ro/152.0.6/Mozilla.Firefox.ro.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.locale.ta-IN.yaml new file mode 100644 index 000000000000..eee07a796643 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.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.ro +PackageVersion: 152.0.6 +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/ro/152.0.6/Mozilla.Firefox.ro.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.locale.zh-CN.yaml new file mode 100644 index 000000000000..dc451eb87ac0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.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.ro +PackageVersion: 152.0.6 +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/ro/152.0.6/Mozilla.Firefox.ro.yaml b/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.yaml new file mode 100644 index 000000000000..a22a1c40621b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ro/152.0.6/Mozilla.Firefox.ro.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.ro +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ru/152.0.6/Mozilla.Firefox.ru.installer.yaml b/manifests/m/Mozilla/Firefox/ru/152.0.6/Mozilla.Firefox.ru.installer.yaml new file mode 100644 index 000000000000..2062399cd2b6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/152.0.6/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: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/ru/Firefox%20Setup%20152.0.6.exe + InstallerSha256: B429AAD36E58A02389719E6056A4F346F7C8C1AA9F2174091801A6B2D4E660B4 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/ru/Firefox%20Setup%20152.0.6.exe + InstallerSha256: DC934841EEBC2FEAF113E827DDFCC07C971E0C1606A5B38E9FA35834372A9F64 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/ru/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 423B54EC432BEB43DF1CAA4D395DFB5D71872207DF4532E4559EF0C6C9A0853A +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ru/152.0.6/Mozilla.Firefox.ru.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/ru/152.0.6/Mozilla.Firefox.ru.locale.cs-CZ.yaml new file mode 100644 index 000000000000..79d428dab53e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ru.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/ru/152.0.6/Mozilla.Firefox.ru.locale.da-DK.yaml new file mode 100644 index 000000000000..e8eca99e2024 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ru.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ru/152.0.6/Mozilla.Firefox.ru.locale.de-DE.yaml new file mode 100644 index 000000000000..08ef33555c84 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ru.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/ru/152.0.6/Mozilla.Firefox.ru.locale.el-GR.yaml new file mode 100644 index 000000000000..88c64b497341 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ru.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/ru/152.0.6/Mozilla.Firefox.ru.locale.en-GB.yaml new file mode 100644 index 000000000000..8d1c1ba95110 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ru.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ru/152.0.6/Mozilla.Firefox.ru.locale.en-US.yaml new file mode 100644 index 000000000000..fbffb7185190 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/152.0.6/Mozilla.Firefox.ru.locale.en-US.yaml @@ -0,0 +1,49 @@ +# 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: 152.0.6 +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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ru/152.0.6/Mozilla.Firefox.ru.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/ru/152.0.6/Mozilla.Firefox.ru.locale.es-MX.yaml new file mode 100644 index 000000000000..4d0570d6cc6b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ru.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/ru/152.0.6/Mozilla.Firefox.ru.locale.fr-FR.yaml new file mode 100644 index 000000000000..5cda17711eca --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ru.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/ru/152.0.6/Mozilla.Firefox.ru.locale.hu-HU.yaml new file mode 100644 index 000000000000..a7aa84851424 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ru.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/ru/152.0.6/Mozilla.Firefox.ru.locale.ja-JP.yaml new file mode 100644 index 000000000000..72cb24a59ac0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ru.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/ru/152.0.6/Mozilla.Firefox.ru.locale.nb-NO.yaml new file mode 100644 index 000000000000..effca8980b10 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ru.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/ru/152.0.6/Mozilla.Firefox.ru.locale.ru-RU.yaml new file mode 100644 index 000000000000..435d271e8e8a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ru.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/ru/152.0.6/Mozilla.Firefox.ru.locale.ta-IN.yaml new file mode 100644 index 000000000000..835c71cd6dee --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ru.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ru/152.0.6/Mozilla.Firefox.ru.locale.zh-CN.yaml new file mode 100644 index 000000000000..a8ef46bd4783 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.ru.yaml b/manifests/m/Mozilla/Firefox/ru/152.0.6/Mozilla.Firefox.ru.yaml new file mode 100644 index 000000000000..c69ec305fe7f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/152.0.6/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: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.installer.yaml b/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.installer.yaml new file mode 100644 index 000000000000..bbd085e18c8b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.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.si +PackageVersion: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/si/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 79B54383A8C8208606F0A5F6B170567E9A2E577EBF978BB112D444FBA5DF46C6 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/si/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 399E94252ACE2726473C2CA4B97ED4A1939DB1490D84DE939E874487B462DBD1 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/si/Firefox%20Setup%20152.0.6.exe + InstallerSha256: FB2FA6EF881DED19071CF19BD9CDC1752EDFC1E2456C306991B23F2A6475D712 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.locale.cs-CZ.yaml new file mode 100644 index 000000000000..dbd98b9e0986 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.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.si +PackageVersion: 152.0.6 +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/si/152.0.6/Mozilla.Firefox.si.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.locale.da-DK.yaml new file mode 100644 index 000000000000..ed10e83a022a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.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.si +PackageVersion: 152.0.6 +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/si/152.0.6/Mozilla.Firefox.si.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.locale.de-DE.yaml new file mode 100644 index 000000000000..5392e9d469fd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.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.si +PackageVersion: 152.0.6 +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/si/152.0.6/Mozilla.Firefox.si.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.locale.el-GR.yaml new file mode 100644 index 000000000000..457f191b19bc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.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.si +PackageVersion: 152.0.6 +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/si/152.0.6/Mozilla.Firefox.si.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.locale.en-GB.yaml new file mode 100644 index 000000000000..88a519928d14 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.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.si +PackageVersion: 152.0.6 +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/si/152.0.6/Mozilla.Firefox.si.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.locale.en-US.yaml new file mode 100644 index 000000000000..4483b88e1886 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.si +PackageVersion: 152.0.6 +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 (si) +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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.locale.es-MX.yaml new file mode 100644 index 000000000000..2be28bf5a649 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.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.si +PackageVersion: 152.0.6 +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/si/152.0.6/Mozilla.Firefox.si.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.locale.fr-FR.yaml new file mode 100644 index 000000000000..7d4eb706668c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.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.si +PackageVersion: 152.0.6 +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/si/152.0.6/Mozilla.Firefox.si.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.locale.hu-HU.yaml new file mode 100644 index 000000000000..dde1c0ea14b5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.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.si +PackageVersion: 152.0.6 +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/si/152.0.6/Mozilla.Firefox.si.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.locale.ja-JP.yaml new file mode 100644 index 000000000000..4fc4911f5f02 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.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.si +PackageVersion: 152.0.6 +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/si/152.0.6/Mozilla.Firefox.si.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.locale.nb-NO.yaml new file mode 100644 index 000000000000..e666eb6cad8d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.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.si +PackageVersion: 152.0.6 +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/si/152.0.6/Mozilla.Firefox.si.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.locale.ru-RU.yaml new file mode 100644 index 000000000000..eb83e47a9c40 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.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.si +PackageVersion: 152.0.6 +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/si/152.0.6/Mozilla.Firefox.si.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.locale.ta-IN.yaml new file mode 100644 index 000000000000..91e109d88e30 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.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.si +PackageVersion: 152.0.6 +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/si/152.0.6/Mozilla.Firefox.si.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.locale.zh-CN.yaml new file mode 100644 index 000000000000..0c2bff4837f3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.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.si +PackageVersion: 152.0.6 +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/si/152.0.6/Mozilla.Firefox.si.yaml b/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.yaml new file mode 100644 index 000000000000..e9af5cdbc3c5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/si/152.0.6/Mozilla.Firefox.si.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.si +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.installer.yaml b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.installer.yaml new file mode 100644 index 000000000000..c67b317fcc6e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.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.sk +PackageVersion: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/sk/Firefox%20Setup%20152.0.6.exe + InstallerSha256: E3799CBBD29C77D5A85192BA8A43705E4C883EF03B1ED9E941721249247E5A33 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/sk/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 55138733CD60AB0276EB4B2CE82838C64A9F68422253ACDBECFE98A9667320FA +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/sk/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 416B99AE5D22FFB5C67CFB43346A211E66F1DB48D21BE08BA79A3FDED5BECBD9 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.cs-CZ.yaml new file mode 100644 index 000000000000..60af8316a37b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.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.sk +PackageVersion: 152.0.6 +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/sk/152.0.6/Mozilla.Firefox.sk.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.da-DK.yaml new file mode 100644 index 000000000000..d9077af1ac9b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.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.sk +PackageVersion: 152.0.6 +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/sk/152.0.6/Mozilla.Firefox.sk.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.de-DE.yaml new file mode 100644 index 000000000000..a1b03068b91b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.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.sk +PackageVersion: 152.0.6 +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/sk/152.0.6/Mozilla.Firefox.sk.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.el-GR.yaml new file mode 100644 index 000000000000..a28a89af9d09 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.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.sk +PackageVersion: 152.0.6 +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/sk/152.0.6/Mozilla.Firefox.sk.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.en-GB.yaml new file mode 100644 index 000000000000..cd3d642261fa --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.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.sk +PackageVersion: 152.0.6 +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/sk/152.0.6/Mozilla.Firefox.sk.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.en-US.yaml new file mode 100644 index 000000000000..39a1a0ad4fe8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sk +PackageVersion: 152.0.6 +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 (sk) +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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.es-MX.yaml new file mode 100644 index 000000000000..d6237d3d5cc9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.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.sk +PackageVersion: 152.0.6 +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/sk/152.0.6/Mozilla.Firefox.sk.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.fr-FR.yaml new file mode 100644 index 000000000000..828c766fcdcc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.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.sk +PackageVersion: 152.0.6 +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/sk/152.0.6/Mozilla.Firefox.sk.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.hu-HU.yaml new file mode 100644 index 000000000000..e728da0ab94d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.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.sk +PackageVersion: 152.0.6 +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/sk/152.0.6/Mozilla.Firefox.sk.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.ja-JP.yaml new file mode 100644 index 000000000000..fda62cad1a34 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.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.sk +PackageVersion: 152.0.6 +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/sk/152.0.6/Mozilla.Firefox.sk.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.nb-NO.yaml new file mode 100644 index 000000000000..afce1f9bb365 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.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.sk +PackageVersion: 152.0.6 +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/sk/152.0.6/Mozilla.Firefox.sk.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.ru-RU.yaml new file mode 100644 index 000000000000..04f0ab464fae --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.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.sk +PackageVersion: 152.0.6 +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/sk/152.0.6/Mozilla.Firefox.sk.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.ta-IN.yaml new file mode 100644 index 000000000000..6823998c9a7e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.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.sk +PackageVersion: 152.0.6 +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/sk/152.0.6/Mozilla.Firefox.sk.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.locale.zh-CN.yaml new file mode 100644 index 000000000000..f5f71dc56bd9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.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.sk +PackageVersion: 152.0.6 +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/sk/152.0.6/Mozilla.Firefox.sk.yaml b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.yaml new file mode 100644 index 000000000000..29f8f214aa20 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/152.0.6/Mozilla.Firefox.sk.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.sk +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/152.0.6/Mozilla.Firefox.sl.installer.yaml b/manifests/m/Mozilla/Firefox/sl/152.0.6/Mozilla.Firefox.sl.installer.yaml new file mode 100644 index 000000000000..85248e4441b3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/152.0.6/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: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/sl/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 662A6B46705D0228D8D0FA76C28A7987326DB6F671357CF2529C25ECD96D0B95 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/sl/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 2CC8F2994C7827F4DFD3D5FF5D471CE6969AB379E03DC7CB485AFF960D2FA285 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/sl/Firefox%20Setup%20152.0.6.exe + InstallerSha256: B46B8EB036E99E3CA3069060CFC7EFB51032D8A5DD88EEB1F21D46BB5316E78A +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/152.0.6/Mozilla.Firefox.sl.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/sl/152.0.6/Mozilla.Firefox.sl.locale.cs-CZ.yaml new file mode 100644 index 000000000000..4e17a0f347eb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.sl.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/sl/152.0.6/Mozilla.Firefox.sl.locale.da-DK.yaml new file mode 100644 index 000000000000..afbd480d5100 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.sl.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/sl/152.0.6/Mozilla.Firefox.sl.locale.de-DE.yaml new file mode 100644 index 000000000000..d5e56180b6cd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.sl.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/sl/152.0.6/Mozilla.Firefox.sl.locale.el-GR.yaml new file mode 100644 index 000000000000..45c40ed27210 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.sl.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/sl/152.0.6/Mozilla.Firefox.sl.locale.en-GB.yaml new file mode 100644 index 000000000000..d09033a55296 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.sl.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/sl/152.0.6/Mozilla.Firefox.sl.locale.en-US.yaml new file mode 100644 index 000000000000..04e9edf87407 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/152.0.6/Mozilla.Firefox.sl.locale.en-US.yaml @@ -0,0 +1,49 @@ +# 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: 152.0.6 +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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/152.0.6/Mozilla.Firefox.sl.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/sl/152.0.6/Mozilla.Firefox.sl.locale.es-MX.yaml new file mode 100644 index 000000000000..17f97b8517a6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.sl.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/sl/152.0.6/Mozilla.Firefox.sl.locale.fr-FR.yaml new file mode 100644 index 000000000000..fd08000ffe2f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.sl.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/sl/152.0.6/Mozilla.Firefox.sl.locale.hu-HU.yaml new file mode 100644 index 000000000000..f4ce8804d6e1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.sl.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/sl/152.0.6/Mozilla.Firefox.sl.locale.ja-JP.yaml new file mode 100644 index 000000000000..be8dadc10c83 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.sl.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/sl/152.0.6/Mozilla.Firefox.sl.locale.nb-NO.yaml new file mode 100644 index 000000000000..cf8e17958a26 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.sl.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/sl/152.0.6/Mozilla.Firefox.sl.locale.ru-RU.yaml new file mode 100644 index 000000000000..4d931c07b43c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.sl.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/sl/152.0.6/Mozilla.Firefox.sl.locale.ta-IN.yaml new file mode 100644 index 000000000000..c6b379d832df --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.sl.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/sl/152.0.6/Mozilla.Firefox.sl.locale.zh-CN.yaml new file mode 100644 index 000000000000..5d4e40fd263b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.sl.yaml b/manifests/m/Mozilla/Firefox/sl/152.0.6/Mozilla.Firefox.sl.yaml new file mode 100644 index 000000000000..6757c6ea4f8d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/152.0.6/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: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/szl/152.0.6/Mozilla.Firefox.szl.installer.yaml b/manifests/m/Mozilla/Firefox/szl/152.0.6/Mozilla.Firefox.szl.installer.yaml new file mode 100644 index 000000000000..1c2f755d38af --- /dev/null +++ b/manifests/m/Mozilla/Firefox/szl/152.0.6/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: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/szl/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 2E756EC804A4A2B993EE8608B18914AC45CEE745A79457C6A6FA9538BA621929 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/szl/Firefox%20Setup%20152.0.6.exe + InstallerSha256: CB151604B7D293EED48E95BFC7E907B3F7E8F28725C76A69DDF187763D25AA0F +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/szl/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 211696948BF697C9B2E67417D821712506F684DF4D4B5C660349758D621C28D8 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/szl/152.0.6/Mozilla.Firefox.szl.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/szl/152.0.6/Mozilla.Firefox.szl.locale.cs-CZ.yaml new file mode 100644 index 000000000000..e457d2d67033 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/szl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.szl.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/szl/152.0.6/Mozilla.Firefox.szl.locale.da-DK.yaml new file mode 100644 index 000000000000..4af6a9b7d554 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/szl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.szl.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/szl/152.0.6/Mozilla.Firefox.szl.locale.de-DE.yaml new file mode 100644 index 000000000000..9422a8a7b1b8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/szl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.szl.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/szl/152.0.6/Mozilla.Firefox.szl.locale.el-GR.yaml new file mode 100644 index 000000000000..2b6070307a86 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/szl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.szl.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/szl/152.0.6/Mozilla.Firefox.szl.locale.en-GB.yaml new file mode 100644 index 000000000000..e5c7d7b67450 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/szl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.szl.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/szl/152.0.6/Mozilla.Firefox.szl.locale.en-US.yaml new file mode 100644 index 000000000000..d704ae775883 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/szl/152.0.6/Mozilla.Firefox.szl.locale.en-US.yaml @@ -0,0 +1,49 @@ +# 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: 152.0.6 +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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/szl/152.0.6/Mozilla.Firefox.szl.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/szl/152.0.6/Mozilla.Firefox.szl.locale.es-MX.yaml new file mode 100644 index 000000000000..1fe42942d265 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/szl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.szl.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/szl/152.0.6/Mozilla.Firefox.szl.locale.fr-FR.yaml new file mode 100644 index 000000000000..c729b9efcadf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/szl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.szl.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/szl/152.0.6/Mozilla.Firefox.szl.locale.hu-HU.yaml new file mode 100644 index 000000000000..eb8f55c8b974 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/szl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.szl.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/szl/152.0.6/Mozilla.Firefox.szl.locale.ja-JP.yaml new file mode 100644 index 000000000000..7fa03a36f046 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/szl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.szl.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/szl/152.0.6/Mozilla.Firefox.szl.locale.nb-NO.yaml new file mode 100644 index 000000000000..c9a73da38aed --- /dev/null +++ b/manifests/m/Mozilla/Firefox/szl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.szl.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/szl/152.0.6/Mozilla.Firefox.szl.locale.ru-RU.yaml new file mode 100644 index 000000000000..b00421368089 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/szl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.szl.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/szl/152.0.6/Mozilla.Firefox.szl.locale.ta-IN.yaml new file mode 100644 index 000000000000..432b65d09f21 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/szl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.szl.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/szl/152.0.6/Mozilla.Firefox.szl.locale.zh-CN.yaml new file mode 100644 index 000000000000..bbe872a4cc61 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/szl/152.0.6/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: 152.0.6 +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/152.0.6/Mozilla.Firefox.szl.yaml b/manifests/m/Mozilla/Firefox/szl/152.0.6/Mozilla.Firefox.szl.yaml new file mode 100644 index 000000000000..99cd711164ff --- /dev/null +++ b/manifests/m/Mozilla/Firefox/szl/152.0.6/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: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.installer.yaml b/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.installer.yaml new file mode 100644 index 000000000000..5e7b266f388f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.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.ta +PackageVersion: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/ta/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 6B3AFFD12BB6A024B851D94E01B1320B413A5C776CD2E29985F40EAE559C405E +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/ta/Firefox%20Setup%20152.0.6.exe + InstallerSha256: F60C81B1704EFF065FF71AEEB1826F347E2436301B9231283297E3EEB308F997 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/ta/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 9D9FD06F4E43E93D7BCC2380CAD7E06017D109762217842A35F90E3CC47A48CE +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.locale.cs-CZ.yaml new file mode 100644 index 000000000000..de0e2d6d061f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.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.ta +PackageVersion: 152.0.6 +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/ta/152.0.6/Mozilla.Firefox.ta.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.locale.da-DK.yaml new file mode 100644 index 000000000000..5f3a4c5fb997 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.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.ta +PackageVersion: 152.0.6 +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/ta/152.0.6/Mozilla.Firefox.ta.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.locale.de-DE.yaml new file mode 100644 index 000000000000..53a7e549cbcd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.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.ta +PackageVersion: 152.0.6 +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/ta/152.0.6/Mozilla.Firefox.ta.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.locale.el-GR.yaml new file mode 100644 index 000000000000..61c8c793f676 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.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.ta +PackageVersion: 152.0.6 +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/ta/152.0.6/Mozilla.Firefox.ta.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.locale.en-GB.yaml new file mode 100644 index 000000000000..cb446286eec5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.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.ta +PackageVersion: 152.0.6 +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/ta/152.0.6/Mozilla.Firefox.ta.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.locale.en-US.yaml new file mode 100644 index 000000000000..0dac240a8fa3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ta +PackageVersion: 152.0.6 +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 (ta) +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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.locale.es-MX.yaml new file mode 100644 index 000000000000..d4cf6487e462 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.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.ta +PackageVersion: 152.0.6 +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/ta/152.0.6/Mozilla.Firefox.ta.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.locale.fr-FR.yaml new file mode 100644 index 000000000000..ecaea7172bb4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.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.ta +PackageVersion: 152.0.6 +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/ta/152.0.6/Mozilla.Firefox.ta.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.locale.hu-HU.yaml new file mode 100644 index 000000000000..a019fbae51cd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.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.ta +PackageVersion: 152.0.6 +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/ta/152.0.6/Mozilla.Firefox.ta.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.locale.ja-JP.yaml new file mode 100644 index 000000000000..b9cf9c4651b5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.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.ta +PackageVersion: 152.0.6 +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/ta/152.0.6/Mozilla.Firefox.ta.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.locale.nb-NO.yaml new file mode 100644 index 000000000000..0b6631d1fcb7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.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.ta +PackageVersion: 152.0.6 +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/ta/152.0.6/Mozilla.Firefox.ta.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.locale.ru-RU.yaml new file mode 100644 index 000000000000..e9543aa2907a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.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.ta +PackageVersion: 152.0.6 +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/ta/152.0.6/Mozilla.Firefox.ta.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.locale.ta-IN.yaml new file mode 100644 index 000000000000..3a8f8b682840 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.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.ta +PackageVersion: 152.0.6 +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/ta/152.0.6/Mozilla.Firefox.ta.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.locale.zh-CN.yaml new file mode 100644 index 000000000000..f37d4efd5879 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.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.ta +PackageVersion: 152.0.6 +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/ta/152.0.6/Mozilla.Firefox.ta.yaml b/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.yaml new file mode 100644 index 000000000000..16173ab0f957 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ta/152.0.6/Mozilla.Firefox.ta.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.ta +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.installer.yaml b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.installer.yaml new file mode 100644 index 000000000000..3ac081f0e18b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.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.te +PackageVersion: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/te/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 51FC5BE87F8FCD51D6DE5EC61E7427F509BE8435AB0CE66ADF0D7817FE1132B1 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/te/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 7345DFC3591ABF6884C2D3F464DDE4297B4597FB56397253FD42456E2E85EF28 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/te/Firefox%20Setup%20152.0.6.exe + InstallerSha256: AD1BD88D91441EFB508D64C0BEF2BD03A95D9790EE8E52A3EAF83250EC7F5657 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.cs-CZ.yaml new file mode 100644 index 000000000000..dd8c5ef53d84 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.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.te +PackageVersion: 152.0.6 +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/te/152.0.6/Mozilla.Firefox.te.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.da-DK.yaml new file mode 100644 index 000000000000..884aafc3c2af --- /dev/null +++ b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.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.te +PackageVersion: 152.0.6 +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/te/152.0.6/Mozilla.Firefox.te.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.de-DE.yaml new file mode 100644 index 000000000000..ecbc17bc8021 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.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.te +PackageVersion: 152.0.6 +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/te/152.0.6/Mozilla.Firefox.te.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.el-GR.yaml new file mode 100644 index 000000000000..7f17db06d3d7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.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.te +PackageVersion: 152.0.6 +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/te/152.0.6/Mozilla.Firefox.te.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.en-GB.yaml new file mode 100644 index 000000000000..8865c1b85335 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.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.te +PackageVersion: 152.0.6 +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/te/152.0.6/Mozilla.Firefox.te.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.en-US.yaml new file mode 100644 index 000000000000..45f362cc0984 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.te +PackageVersion: 152.0.6 +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 (te) +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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.es-MX.yaml new file mode 100644 index 000000000000..210bac03836c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.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.te +PackageVersion: 152.0.6 +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/te/152.0.6/Mozilla.Firefox.te.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.fr-FR.yaml new file mode 100644 index 000000000000..ffbc72e6451e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.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.te +PackageVersion: 152.0.6 +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/te/152.0.6/Mozilla.Firefox.te.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.hu-HU.yaml new file mode 100644 index 000000000000..eff84eff0b94 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.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.te +PackageVersion: 152.0.6 +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/te/152.0.6/Mozilla.Firefox.te.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.ja-JP.yaml new file mode 100644 index 000000000000..21ab97f1d998 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.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.te +PackageVersion: 152.0.6 +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/te/152.0.6/Mozilla.Firefox.te.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.nb-NO.yaml new file mode 100644 index 000000000000..b422c5d53058 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.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.te +PackageVersion: 152.0.6 +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/te/152.0.6/Mozilla.Firefox.te.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.ru-RU.yaml new file mode 100644 index 000000000000..a1fc098ad835 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.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.te +PackageVersion: 152.0.6 +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/te/152.0.6/Mozilla.Firefox.te.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.ta-IN.yaml new file mode 100644 index 000000000000..fc7c4541c368 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.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.te +PackageVersion: 152.0.6 +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/te/152.0.6/Mozilla.Firefox.te.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.locale.zh-CN.yaml new file mode 100644 index 000000000000..34804467b49e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.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.te +PackageVersion: 152.0.6 +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/te/152.0.6/Mozilla.Firefox.te.yaml b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.yaml new file mode 100644 index 000000000000..1ac3604a45f1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/te/152.0.6/Mozilla.Firefox.te.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.te +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.installer.yaml b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.installer.yaml new file mode 100644 index 000000000000..3e30b42231a0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.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.th +PackageVersion: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/th/Firefox%20Setup%20152.0.6.exe + InstallerSha256: C49832E5A6E9C3D26E7D48537DABFFE65D34E5C1EC9114E0582290643245AC1D +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/th/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 24BB28B02CB3235404157A4D996258290CEAB953DB260D77E28504D0749B45A1 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/th/Firefox%20Setup%20152.0.6.exe + InstallerSha256: A2F673F9CA3C2DEF3BF58B8CE89299F4C1AFCD5E660BC20F5E5C221DD22EEB96 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.cs-CZ.yaml new file mode 100644 index 000000000000..791068b75a20 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.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.th +PackageVersion: 152.0.6 +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/th/152.0.6/Mozilla.Firefox.th.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.da-DK.yaml new file mode 100644 index 000000000000..4ca087d858d3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.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.th +PackageVersion: 152.0.6 +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/th/152.0.6/Mozilla.Firefox.th.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.de-DE.yaml new file mode 100644 index 000000000000..24ef81b79df5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.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.th +PackageVersion: 152.0.6 +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/th/152.0.6/Mozilla.Firefox.th.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.el-GR.yaml new file mode 100644 index 000000000000..3745da580f21 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.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.th +PackageVersion: 152.0.6 +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/th/152.0.6/Mozilla.Firefox.th.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.en-GB.yaml new file mode 100644 index 000000000000..d7c55ed4a5e8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.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.th +PackageVersion: 152.0.6 +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/th/152.0.6/Mozilla.Firefox.th.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.en-US.yaml new file mode 100644 index 000000000000..efe70f98cae5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.th +PackageVersion: 152.0.6 +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 (th) +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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.es-MX.yaml new file mode 100644 index 000000000000..700ce1029f57 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.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.th +PackageVersion: 152.0.6 +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/th/152.0.6/Mozilla.Firefox.th.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.fr-FR.yaml new file mode 100644 index 000000000000..3cf15d2b987c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.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.th +PackageVersion: 152.0.6 +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/th/152.0.6/Mozilla.Firefox.th.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.hu-HU.yaml new file mode 100644 index 000000000000..8e64fe004605 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.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.th +PackageVersion: 152.0.6 +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/th/152.0.6/Mozilla.Firefox.th.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.ja-JP.yaml new file mode 100644 index 000000000000..d4bdec9505c4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.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.th +PackageVersion: 152.0.6 +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/th/152.0.6/Mozilla.Firefox.th.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.nb-NO.yaml new file mode 100644 index 000000000000..5c1c6f8bd3ad --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.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.th +PackageVersion: 152.0.6 +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/th/152.0.6/Mozilla.Firefox.th.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.ru-RU.yaml new file mode 100644 index 000000000000..f2387a49afde --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.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.th +PackageVersion: 152.0.6 +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/th/152.0.6/Mozilla.Firefox.th.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.ta-IN.yaml new file mode 100644 index 000000000000..19e9aba3fd8e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.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.th +PackageVersion: 152.0.6 +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/th/152.0.6/Mozilla.Firefox.th.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.locale.zh-CN.yaml new file mode 100644 index 000000000000..6883564d9922 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.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.th +PackageVersion: 152.0.6 +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/th/152.0.6/Mozilla.Firefox.th.yaml b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.yaml new file mode 100644 index 000000000000..f1b58b526031 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/152.0.6/Mozilla.Firefox.th.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.th +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.installer.yaml b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.installer.yaml new file mode 100644 index 000000000000..09f65f85772d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.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.uk +PackageVersion: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/uk/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 3EF08494705B40C4248C02F5681B66780F8433A12F79E864AA77569C97CDC2E1 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/uk/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 53681C9BF034EE1DEE3047155796DF88F8581C472C2B659EA5BDF470B1C0B6B2 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/uk/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 559A4C7528F3546BB6488A58AD2051E00E73D51E69DB204B9F2F53610F101D4B +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.cs-CZ.yaml new file mode 100644 index 000000000000..63cb94632506 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.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.uk +PackageVersion: 152.0.6 +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/uk/152.0.6/Mozilla.Firefox.uk.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.da-DK.yaml new file mode 100644 index 000000000000..8ce3a47d2ece --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.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.uk +PackageVersion: 152.0.6 +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/uk/152.0.6/Mozilla.Firefox.uk.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.de-DE.yaml new file mode 100644 index 000000000000..b18e2a2cf42a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.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.uk +PackageVersion: 152.0.6 +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/uk/152.0.6/Mozilla.Firefox.uk.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.el-GR.yaml new file mode 100644 index 000000000000..ffbeff3b88f5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.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.uk +PackageVersion: 152.0.6 +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/uk/152.0.6/Mozilla.Firefox.uk.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.en-GB.yaml new file mode 100644 index 000000000000..044ca75063ec --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.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.uk +PackageVersion: 152.0.6 +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/uk/152.0.6/Mozilla.Firefox.uk.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.en-US.yaml new file mode 100644 index 000000000000..93a37519bf7d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uk +PackageVersion: 152.0.6 +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 (uk) +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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.es-MX.yaml new file mode 100644 index 000000000000..336fdd68a7fd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.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.uk +PackageVersion: 152.0.6 +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/uk/152.0.6/Mozilla.Firefox.uk.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.fr-FR.yaml new file mode 100644 index 000000000000..4a3867e5279d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.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.uk +PackageVersion: 152.0.6 +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/uk/152.0.6/Mozilla.Firefox.uk.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.hu-HU.yaml new file mode 100644 index 000000000000..c70f083ec907 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.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.uk +PackageVersion: 152.0.6 +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/uk/152.0.6/Mozilla.Firefox.uk.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.ja-JP.yaml new file mode 100644 index 000000000000..be7d2105e72c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.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.uk +PackageVersion: 152.0.6 +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/uk/152.0.6/Mozilla.Firefox.uk.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.nb-NO.yaml new file mode 100644 index 000000000000..e1daf844c226 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.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.uk +PackageVersion: 152.0.6 +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/uk/152.0.6/Mozilla.Firefox.uk.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.ru-RU.yaml new file mode 100644 index 000000000000..9595b1181f55 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.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.uk +PackageVersion: 152.0.6 +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/uk/152.0.6/Mozilla.Firefox.uk.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.ta-IN.yaml new file mode 100644 index 000000000000..f80d612fbf48 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.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.uk +PackageVersion: 152.0.6 +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/uk/152.0.6/Mozilla.Firefox.uk.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.locale.zh-CN.yaml new file mode 100644 index 000000000000..c48b8866418a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.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.uk +PackageVersion: 152.0.6 +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/uk/152.0.6/Mozilla.Firefox.uk.yaml b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.yaml new file mode 100644 index 000000000000..85eeb80053cf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/152.0.6/Mozilla.Firefox.uk.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.uk +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.installer.yaml b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.installer.yaml new file mode 100644 index 000000000000..eaf55e6e2784 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.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.vi +PackageVersion: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/vi/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 697299C2CA39BE41713420AFE6EA5CB33CA1D5935D892149E9225E2803238B04 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/vi/Firefox%20Setup%20152.0.6.exe + InstallerSha256: FF8119F58B9E8CDF1E4540D8D0E5D70B2C6095E399951AB0C2AA116762053088 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/vi/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 8F22D482FB519558B886EF4C34891F5E9FF499799BA71BDC67441B6018E3C9F6 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.cs-CZ.yaml new file mode 100644 index 000000000000..cd07f687ecdf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.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.vi +PackageVersion: 152.0.6 +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/vi/152.0.6/Mozilla.Firefox.vi.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.da-DK.yaml new file mode 100644 index 000000000000..7cd94fa4fa4f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.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.vi +PackageVersion: 152.0.6 +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/vi/152.0.6/Mozilla.Firefox.vi.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.de-DE.yaml new file mode 100644 index 000000000000..86689cae12a4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.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.vi +PackageVersion: 152.0.6 +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/vi/152.0.6/Mozilla.Firefox.vi.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.el-GR.yaml new file mode 100644 index 000000000000..f8ab3a5a8bee --- /dev/null +++ b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.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.vi +PackageVersion: 152.0.6 +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/vi/152.0.6/Mozilla.Firefox.vi.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.en-GB.yaml new file mode 100644 index 000000000000..9ada02a9d706 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.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.vi +PackageVersion: 152.0.6 +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/vi/152.0.6/Mozilla.Firefox.vi.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.en-US.yaml new file mode 100644 index 000000000000..3a8ee728b40d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.vi +PackageVersion: 152.0.6 +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 (vi) +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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.es-MX.yaml new file mode 100644 index 000000000000..03365a68252b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.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.vi +PackageVersion: 152.0.6 +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/vi/152.0.6/Mozilla.Firefox.vi.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.fr-FR.yaml new file mode 100644 index 000000000000..bc21ae121285 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.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.vi +PackageVersion: 152.0.6 +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/vi/152.0.6/Mozilla.Firefox.vi.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.hu-HU.yaml new file mode 100644 index 000000000000..869eff11c37b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.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.vi +PackageVersion: 152.0.6 +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/vi/152.0.6/Mozilla.Firefox.vi.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.ja-JP.yaml new file mode 100644 index 000000000000..3a0b15d76976 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.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.vi +PackageVersion: 152.0.6 +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/vi/152.0.6/Mozilla.Firefox.vi.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.nb-NO.yaml new file mode 100644 index 000000000000..fa84a2323ab1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.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.vi +PackageVersion: 152.0.6 +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/vi/152.0.6/Mozilla.Firefox.vi.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.ru-RU.yaml new file mode 100644 index 000000000000..e2f023999abd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.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.vi +PackageVersion: 152.0.6 +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/vi/152.0.6/Mozilla.Firefox.vi.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.ta-IN.yaml new file mode 100644 index 000000000000..14cbab05052b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.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.vi +PackageVersion: 152.0.6 +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/vi/152.0.6/Mozilla.Firefox.vi.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.locale.zh-CN.yaml new file mode 100644 index 000000000000..b218342736e6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.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.vi +PackageVersion: 152.0.6 +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/vi/152.0.6/Mozilla.Firefox.vi.yaml b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.yaml new file mode 100644 index 000000000000..e5b211c6cd31 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/vi/152.0.6/Mozilla.Firefox.vi.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.vi +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.installer.yaml b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.installer.yaml new file mode 100644 index 000000000000..0fe2976edbd0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.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.xh +PackageVersion: 152.0.6 +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-07-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win32/xh/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 756AA9263B1103CB154C8088D82AFA91658DE77B0FDE046CFB182893A7F3ED6C +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64/xh/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 78F13560C5CA447F37791D218F34DF6FBFD3FFC12C6CDDAB750193F9BDC2A326 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/152.0.6/win64-aarch64/xh/Firefox%20Setup%20152.0.6.exe + InstallerSha256: 1F942DB8363BF07AF4D5697B229D1116C823D473C1B10C11785F98D393D02C29 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.cs-CZ.yaml new file mode 100644 index 000000000000..6f55c193322b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.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.xh +PackageVersion: 152.0.6 +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/xh/152.0.6/Mozilla.Firefox.xh.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.da-DK.yaml new file mode 100644 index 000000000000..d87a9b643b6b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.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.xh +PackageVersion: 152.0.6 +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/xh/152.0.6/Mozilla.Firefox.xh.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.de-DE.yaml new file mode 100644 index 000000000000..8ad74ebc0c2d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.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.xh +PackageVersion: 152.0.6 +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/xh/152.0.6/Mozilla.Firefox.xh.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.el-GR.yaml new file mode 100644 index 000000000000..7f88254f14e7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.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.xh +PackageVersion: 152.0.6 +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/xh/152.0.6/Mozilla.Firefox.xh.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.en-GB.yaml new file mode 100644 index 000000000000..f1a49dabd98e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.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.xh +PackageVersion: 152.0.6 +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/xh/152.0.6/Mozilla.Firefox.xh.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.en-US.yaml new file mode 100644 index 000000000000..16715c6d4619 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.xh +PackageVersion: 152.0.6 +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 (xh) +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: |- + Version 152.0.6, first offered to Release channel users on July 14, 2026 + + New + - Smart Window includes several enhancements: + - Select text on a page and get quick access to summarize, explain, and more using the built-in assistant. (Bug 2034921) + - Added a row of shortcuts to New Tab, making it easier to get back to sites. (Bug 2048338) + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + + Fixed + - Fixed an issue that prevented email tracking protection from being disabled in the redesigned Firefox Settings. (Bug 2049331) + - Fixed a hang that could occur after using a file picker dialog on macOS 26. (Bug 2053177) + - Fixed the homepage not loading for some enterprise configurations that set it using a legacy autoconfig format. (Bug 2047962) + - Various security fixes. + - Reference link to 152.0.5 release notes. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/152.0.6/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.es-MX.yaml new file mode 100644 index 000000000000..aef997772a80 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.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.xh +PackageVersion: 152.0.6 +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/xh/152.0.6/Mozilla.Firefox.xh.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.fr-FR.yaml new file mode 100644 index 000000000000..ba4e8c504600 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.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.xh +PackageVersion: 152.0.6 +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/xh/152.0.6/Mozilla.Firefox.xh.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.hu-HU.yaml new file mode 100644 index 000000000000..5097a0587131 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.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.xh +PackageVersion: 152.0.6 +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/xh/152.0.6/Mozilla.Firefox.xh.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.ja-JP.yaml new file mode 100644 index 000000000000..162e320190ec --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.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.xh +PackageVersion: 152.0.6 +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/xh/152.0.6/Mozilla.Firefox.xh.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.nb-NO.yaml new file mode 100644 index 000000000000..edb29c989968 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.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.xh +PackageVersion: 152.0.6 +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/xh/152.0.6/Mozilla.Firefox.xh.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.ru-RU.yaml new file mode 100644 index 000000000000..0ba41e21fd70 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.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.xh +PackageVersion: 152.0.6 +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/xh/152.0.6/Mozilla.Firefox.xh.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.ta-IN.yaml new file mode 100644 index 000000000000..15c1504512fd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.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.xh +PackageVersion: 152.0.6 +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/xh/152.0.6/Mozilla.Firefox.xh.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.locale.zh-CN.yaml new file mode 100644 index 000000000000..06c561b18b47 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.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.xh +PackageVersion: 152.0.6 +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/xh/152.0.6/Mozilla.Firefox.xh.yaml b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.yaml new file mode 100644 index 000000000000..216e6d640d03 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/152.0.6/Mozilla.Firefox.xh.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.xh +PackageVersion: 152.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/martona/WM_NIGHT/0.1.1.3/martona.WM_NIGHT.installer.yaml b/manifests/m/martona/WM_NIGHT/0.1.1.3/martona.WM_NIGHT.installer.yaml new file mode 100644 index 000000000000..a5cace04f504 --- /dev/null +++ b/manifests/m/martona/WM_NIGHT/0.1.1.3/martona.WM_NIGHT.installer.yaml @@ -0,0 +1,23 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json +PackageIdentifier: martona.WM_NIGHT +PackageVersion: 0.1.1.3 +# WM_NIGHT ships as a Trusted-Signing-signed full-trust MSIX. The package stages the tray +# host (WM_NIGHT.exe) plus its injected payload (WM_NIGHThook.dll), and declares uiAccess so +# a packaged install can still theme elevated targets (an elevated regedit or mmc). +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.18362.0 +InstallerType: msix +PackageFamilyName: WM-NIGHT_k7d8219edqwtj +ReleaseDate: 2026-07-07 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/martona/WM_NIGHT/releases/download/v0.1.1.3/WM_NIGHT-windows-amd64.msix + InstallerSha256: 76F36825D9F54BE7AEF6F8C0338F41667D0E1B63EEAEE6D556968575582A3478 + SignatureSha256: 95FE80A78B1FA1B41E2B32B31334EB89398D3D0D57127A6CEC2EB230753BD9E3 +- Architecture: arm64 + InstallerUrl: https://github.com/martona/WM_NIGHT/releases/download/v0.1.1.3/WM_NIGHT-windows-arm64.msix + InstallerSha256: 843EC3A464FBA9FCBBBDD58B705EA528FFDD1C49BA5A13D37EEA6E2C0213F52D + SignatureSha256: C4F389224BD0E5DDD9AA9923EF2B246A64F872003B11F0343AC7E7401ADE3921 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/martona/WM_NIGHT/0.1.1.3/martona.WM_NIGHT.locale.en-US.yaml b/manifests/m/martona/WM_NIGHT/0.1.1.3/martona.WM_NIGHT.locale.en-US.yaml new file mode 100644 index 000000000000..a9fc1f0e134c --- /dev/null +++ b/manifests/m/martona/WM_NIGHT/0.1.1.3/martona.WM_NIGHT.locale.en-US.yaml @@ -0,0 +1,39 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json +PackageIdentifier: martona.WM_NIGHT +PackageVersion: 0.1.1.3 +PackageLocale: en-US +Publisher: martona +PublisherUrl: https://anka.me +PublisherSupportUrl: https://github.com/martona/WM_NIGHT/issues +Author: martona +PackageName: WM_NIGHT +PackageUrl: https://github.com/martona/WM_NIGHT +License: MIT +LicenseUrl: https://github.com/martona/WM_NIGHT/blob/master/LICENSE +Copyright: Copyright (c) 2026 Marton Anka +ShortDescription: Native dark mode for classic Win32 desktop apps -- Explorer, regedit, the Control Panel, and the dialogs Windows forgot. +Description: |- + WM_NIGHT is a tray app that paints Windows' leftover light-mode corners dark. The OS + shipped a dark theme years ago but never finished the job: regedit, the Control Panel, + and a long tail of classic dialogs still blast you with white. WM_NIGHT injects umbra's + dark-mode engine into those processes and themes them at the source. + + It themes Explorer and regedit near-perfectly and the Control Panel reasonably well, and + you can add any leftover Win32 app to a registry whitelist. A signed build launched from a + trusted location keeps uiAccess, so it can also theme elevated windows (an elevated regedit + or mmc) without itself running elevated. +Moniker: wm-night +Tags: +- dark-mode +- dark-theme +- theming +- win32 +- explorer +- regedit +- control-panel +- tray +- desktop +- windows +ReleaseNotesUrl: https://github.com/martona/WM_NIGHT/releases/tag/v0.1.1.3 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/martona/WM_NIGHT/0.1.1.3/martona.WM_NIGHT.yaml b/manifests/m/martona/WM_NIGHT/0.1.1.3/martona.WM_NIGHT.yaml new file mode 100644 index 000000000000..df55ecbcf003 --- /dev/null +++ b/manifests/m/martona/WM_NIGHT/0.1.1.3/martona.WM_NIGHT.yaml @@ -0,0 +1,6 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json +PackageIdentifier: martona.WM_NIGHT +PackageVersion: 0.1.1.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/martona/clipp/1.2.1.123/martona.clipp.installer.yaml b/manifests/m/martona/clipp/1.2.1.123/martona.clipp.installer.yaml new file mode 100644 index 000000000000..7d5a431b3eda --- /dev/null +++ b/manifests/m/martona/clipp/1.2.1.123/martona.clipp.installer.yaml @@ -0,0 +1,24 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json +PackageIdentifier: martona.clipp +PackageVersion: 1.2.1.123 +# clipp ships as a Trusted-Signing-signed MSIX. The package registers the tray GUI +# (clippmain.exe) and an `clipp.exe` execution alias for the CLI (clipp copy/paste/ls). +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.17763.0 +InstallerType: msix +PackageFamilyName: Clipp_k7d8219edqwtj +Commands: +- clipp +ReleaseDate: 2026-06-24 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/martona/clipp/releases/download/v1.2.1.123/clipp-windows-amd64.msix + InstallerSha256: 8EB8BF0465B66D56F9409B76E97021E72FD0B70789D641AFCF04AD0CE87D4B64 + SignatureSha256: AD5875C566E587C240E6051D4ADF3F93955FD3B2F7AEDA449E57CC1F5538BFF4 +- Architecture: arm64 + InstallerUrl: https://github.com/martona/clipp/releases/download/v1.2.1.123/clipp-windows-arm64.msix + InstallerSha256: EA8B29BD722CFE843EAE82727863A8875E43353944E551753931E492DC33A2DC + SignatureSha256: 74E533509F7A17EE820C6B0699A92FDC7F8943632C79AEF9FE689632026A32A9 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/m/martona/clipp/1.2.1.123/martona.clipp.locale.en-US.yaml b/manifests/m/martona/clipp/1.2.1.123/martona.clipp.locale.en-US.yaml new file mode 100644 index 000000000000..aa17e902fa4c --- /dev/null +++ b/manifests/m/martona/clipp/1.2.1.123/martona.clipp.locale.en-US.yaml @@ -0,0 +1,38 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json +PackageIdentifier: martona.clipp +PackageVersion: 1.2.1.123 +PackageLocale: en-US +Publisher: martona +PublisherUrl: https://clipp.net +PublisherSupportUrl: https://clipp.net/support +Author: martona +PackageName: Clipp +PackageUrl: https://clipp.net +License: MIT +LicenseUrl: https://github.com/martona/clipp/blob/master/LICENSE.md +ShortDescription: Peer-to-peer clipboard sync for Windows, macOS, and iOS over your LAN. +Description: |- + Clipp is a free, open-source, peer-to-peer clipboard sync utility for Windows, macOS, + and iOS (with a terminal-only Linux client). It shares clipboard text and images + directly between devices you trust on a network you control -- never through the cloud. + Connections are mutually authenticated and encrypted with libsodium primitives; devices + pair with a shared group name and passphrase and confirm a non-secret fingerprint. + + The terminal is a first-class citizen: alongside the tray app, Clipp provides `clipp + copy` and `clipp paste` -- think `pbcopy`/`pbpaste`, but network-enabled -- plus named + registers (`clipp copy `, `clipp ls`). +Moniker: clipp +Tags: +- clipboard +- clipboard-manager +- clipboard-sync +- copy-paste +- cross-platform +- lan +- mdns +- p2p +- pbcopy +- sync +ReleaseNotesUrl: https://github.com/martona/clipp/releases/tag/v1.2.1.123 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/m/martona/clipp/1.2.1.123/martona.clipp.yaml b/manifests/m/martona/clipp/1.2.1.123/martona.clipp.yaml new file mode 100644 index 000000000000..adfaf65a35d0 --- /dev/null +++ b/manifests/m/martona/clipp/1.2.1.123/martona.clipp.yaml @@ -0,0 +1,6 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json +PackageIdentifier: martona.clipp +PackageVersion: 1.2.1.123 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/n/Nextmv/CLI/1.9.6/Nextmv.CLI.installer.yaml b/manifests/n/Nextmv/CLI/1.9.6/Nextmv.CLI.installer.yaml new file mode 100644 index 000000000000..2e468a4f274c --- /dev/null +++ b/manifests/n/Nextmv/CLI/1.9.6/Nextmv.CLI.installer.yaml @@ -0,0 +1,19 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Nextmv.CLI +PackageVersion: 1.9.6 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: nextmv.exe + PortableCommandAlias: nextmv +ArchiveBinariesDependOnPath: true +Commands: +- nextmv +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/nextmv-io/nextmv-py/releases/download/nextmv-v1.9.6/nextmv-windows-x64.zip + InstallerSha256: 0FB70F3623064225C9E9405103C765B0FB52073D5352943A508F2AD8EC47E0A8 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-07-10 diff --git a/manifests/n/Nextmv/CLI/1.9.6/Nextmv.CLI.locale.en-US.yaml b/manifests/n/Nextmv/CLI/1.9.6/Nextmv.CLI.locale.en-US.yaml new file mode 100644 index 000000000000..08652e95563a --- /dev/null +++ b/manifests/n/Nextmv/CLI/1.9.6/Nextmv.CLI.locale.en-US.yaml @@ -0,0 +1,21 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Nextmv.CLI +PackageVersion: 1.9.6 +PackageLocale: en-US +Publisher: Nextmv +PublisherUrl: https://github.com/nextmv-io +PublisherSupportUrl: https://github.com/nextmv-io/nextmv-py/issues +PackageName: Nextmv.CLI +PackageUrl: https://github.com/nextmv-io/nextmv-py +License: Apache 2.0 +ShortDescription: Nextmv CLI for managing, deploying and interacting with decision models. +Tags: +- decision-engineering +- decision-science +- operations-research +- optimization +- vehicle-routing-problem +ReleaseNotesUrl: https://github.com/nextmv-io/nextmv-py/releases/tag/nextmv-v1.9.6 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/n/Nextmv/CLI/1.9.6/Nextmv.CLI.yaml b/manifests/n/Nextmv/CLI/1.9.6/Nextmv.CLI.yaml new file mode 100644 index 000000000000..c705ca69d49c --- /dev/null +++ b/manifests/n/Nextmv/CLI/1.9.6/Nextmv.CLI.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Nextmv.CLI +PackageVersion: 1.9.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/n/NirSoft/HashMyFiles/2.50/NirSoft.HashMyFiles.installer.yaml b/manifests/n/NirSoft/HashMyFiles/2.51/NirSoft.HashMyFiles.installer.yaml similarity index 70% rename from manifests/n/NirSoft/HashMyFiles/2.50/NirSoft.HashMyFiles.installer.yaml rename to manifests/n/NirSoft/HashMyFiles/2.51/NirSoft.HashMyFiles.installer.yaml index 4cd4781f6737..d905896057e4 100644 --- a/manifests/n/NirSoft/HashMyFiles/2.50/NirSoft.HashMyFiles.installer.yaml +++ b/manifests/n/NirSoft/HashMyFiles/2.51/NirSoft.HashMyFiles.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: NirSoft.HashMyFiles -PackageVersion: "2.50" +PackageVersion: "2.51" InstallerLocale: en-US InstallerType: zip NestedInstallerType: portable @@ -12,10 +12,10 @@ NestedInstallerFiles: Installers: - Architecture: x86 InstallerUrl: https://www.nirsoft.net/utils/hashmyfiles.zip - InstallerSha256: 55263A184971607776EC7968F248D9C59B3201A0A68023A5EEE3A88A3945BB75 + InstallerSha256: 792F6B44D7CA458524377FFA05937595B7997A7D989B632BEE62210AED2CD95E - Architecture: x64 InstallerUrl: https://www.nirsoft.net/utils/hashmyfiles-x64.zip - InstallerSha256: 38EAD72BB0DF274156E14F7E3A258021C5DFF0A345CB63F6447DA581D585C8EE + InstallerSha256: F567354F05C447ADC72120B6062C52052A876780E446A4C4ED7590C41833E6A4 ManifestType: installer ManifestVersion: 1.12.0 -ReleaseDate: 2024-12-08 +ReleaseDate: 2026-07-13 diff --git a/manifests/n/NirSoft/HashMyFiles/2.50/NirSoft.HashMyFiles.locale.en-US.yaml b/manifests/n/NirSoft/HashMyFiles/2.51/NirSoft.HashMyFiles.locale.en-US.yaml similarity index 80% rename from manifests/n/NirSoft/HashMyFiles/2.50/NirSoft.HashMyFiles.locale.en-US.yaml rename to manifests/n/NirSoft/HashMyFiles/2.51/NirSoft.HashMyFiles.locale.en-US.yaml index 8cdad34f2977..1bc1c1c7efe3 100644 --- a/manifests/n/NirSoft/HashMyFiles/2.50/NirSoft.HashMyFiles.locale.en-US.yaml +++ b/manifests/n/NirSoft/HashMyFiles/2.51/NirSoft.HashMyFiles.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: NirSoft.HashMyFiles -PackageVersion: "2.50" +PackageVersion: "2.51" PackageLocale: en-US Publisher: NirSoft PublisherUrl: https://www.nirsoft.net/ @@ -21,11 +21,8 @@ Description: |- HashMyFiles can also be launched from the context menu of Windows Explorer, and display the hashes of the selected file or folder. Moniker: hashmyfiles ReleaseNotes: |- - - Version 2.50: - - Added 'Live Hashes Display' option. When it's turned on, HashMyFiles displays the hashes of - every file immediately after they are calculated, instead of waiting until all files are - processed. - - Added new columns: 'Hash Start Time', 'Hash End Time', 'Hashing Duration'. + - Version 2.51: + - HashMyFiles now uses Windows API for CRC32 calculation, which is much faster. ReleaseNotesUrl: https://www.nirsoft.net/utils/hash_my_files.html#:~:text=Versions%20History Documentations: - DocumentLabel: FAQ diff --git a/manifests/n/NirSoft/HashMyFiles/2.50/NirSoft.HashMyFiles.yaml b/manifests/n/NirSoft/HashMyFiles/2.51/NirSoft.HashMyFiles.yaml similarity index 88% rename from manifests/n/NirSoft/HashMyFiles/2.50/NirSoft.HashMyFiles.yaml rename to manifests/n/NirSoft/HashMyFiles/2.51/NirSoft.HashMyFiles.yaml index 9a9ee24291b7..4dc0a1ae7508 100644 --- a/manifests/n/NirSoft/HashMyFiles/2.50/NirSoft.HashMyFiles.yaml +++ b/manifests/n/NirSoft/HashMyFiles/2.51/NirSoft.HashMyFiles.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: NirSoft.HashMyFiles -PackageVersion: "2.50" +PackageVersion: "2.51" DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/n/Notepad++/Notepad++/8.9.7/Notepad++.Notepad++.installer.yaml b/manifests/n/Notepad++/Notepad++/8.9.7/Notepad++.Notepad++.installer.yaml new file mode 100644 index 000000000000..1a6d27db66e5 --- /dev/null +++ b/manifests/n/Notepad++/Notepad++/8.9.7/Notepad++.Notepad++.installer.yaml @@ -0,0 +1,87 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Notepad++.Notepad++ +PackageVersion: 8.9.7 +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: machine + InstallerUrl: https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.9.7/npp.8.9.7.Installer.x64.exe + InstallerSha256: 1884E093BAE261C4942210334E1F2EAE71354913E4DED3CC1A4A18C5320741EC + ExpectedReturnCodes: + - InstallerReturnCode: 5 + ReturnResponse: packageInUse + UpgradeBehavior: install + ProductCode: Notepad++ + ElevationRequirement: elevatesSelf + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\Notepad++' +- Architecture: x86 + InstallerType: nullsoft + Scope: machine + InstallerUrl: https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.9.7/npp.8.9.7.Installer.exe + InstallerSha256: 9B89AA3221FDBCE6EC2EE6F7D07DE9FD7DF2FBB7E7CE6D2F24E34CA347157DCF + ExpectedReturnCodes: + - InstallerReturnCode: 5 + ReturnResponse: packageInUse + UpgradeBehavior: install + ProductCode: Notepad++ + ElevationRequirement: elevatesSelf + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\Notepad++' +- Architecture: arm64 + InstallerType: nullsoft + Scope: machine + InstallerUrl: https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.9.7/npp.8.9.7.Installer.arm64.exe + InstallerSha256: 4BB261857E22505C36E1196B4F6326DF41B4C0FFFC527DC9933FE0B210F7CB02 + ExpectedReturnCodes: + - InstallerReturnCode: 5 + ReturnResponse: packageInUse + UpgradeBehavior: install + ProductCode: Notepad++ + ElevationRequirement: elevatesSelf + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\Notepad++' +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.9.7/npp.8.9.7.Installer.x64.msi + InstallerSha256: E83A210F66EBBEC49F66B61DA1270EF213FFB36F86515247EEFCFFFE6B484943 + InstallerSwitches: + InstallLocation: INSTALLFOLDER="" + UpgradeBehavior: install + ProductCode: '{3281C7BA-0E6A-4A32-974C-3BEA51A4632F}' + AppsAndFeaturesEntries: + - UpgradeCode: '{CDB13460-04DF-4708-A7FD-4CB4A0684605}' + ElevationRequirement: elevatesSelf +- Architecture: x86 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: notepad++.exe + PortableCommandAlias: notepad++ + InstallerUrl: https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.9.7/npp.8.9.7.portable.zip + InstallerSha256: CE0690FAC91C1FC5D61DCDF5B09733FF0D143A61D0A27C6CB9F4003EA92765BB + ArchiveBinariesDependOnPath: true +- Architecture: x64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: notepad++.exe + PortableCommandAlias: notepad++ + InstallerUrl: https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.9.7/npp.8.9.7.portable.x64.zip + InstallerSha256: FF394C496ECB5C8B231FECA05387EDBFB704E85DB3BA956B994BBADBE7520806 + ArchiveBinariesDependOnPath: true +- Architecture: arm64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: notepad++.exe + PortableCommandAlias: notepad++ + InstallerUrl: https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.9.7/npp.8.9.7.portable.arm64.zip + InstallerSha256: 09024171EDBDBE0652785382101C697F3945177B7F21984E5F1FA2318F02535A + ArchiveBinariesDependOnPath: true +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/n/Notepad++/Notepad++/8.9.7/Notepad++.Notepad++.locale.en-US.yaml b/manifests/n/Notepad++/Notepad++/8.9.7/Notepad++.Notepad++.locale.en-US.yaml new file mode 100644 index 000000000000..6048006490a0 --- /dev/null +++ b/manifests/n/Notepad++/Notepad++/8.9.7/Notepad++.Notepad++.locale.en-US.yaml @@ -0,0 +1,35 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Notepad++.Notepad++ +PackageVersion: 8.9.7 +PackageLocale: en-US +Publisher: Notepad++ Team +PublisherUrl: https://notepad-plus-plus.org/ +PublisherSupportUrl: https://notepad-plus-plus.org/online-help +Author: Don Ho +PackageName: Notepad++ +PackageUrl: https://notepad-plus-plus.org/ +License: GPL-3.0-or-later +LicenseUrl: https://github.com/notepad-plus-plus/notepad-plus-plus/blob/HEAD/LICENSE +Copyright: Copyright (C)2026 Don HO . +CopyrightUrl: https://raw.githubusercontent.com/notepad-plus-plus/notepad-plus-plus/master/LICENSE +ShortDescription: Notepad++ is a free source code editor that supports several languages. +Description: |- + Notepad++ is a free (as in “free speech” and also as in “free beer”) source code editor and Notepad replacement that supports several languages. + Running in the MS Windows environment, its use is governed by GNU General Public License. +Moniker: notepad++ +Tags: +- development +- editor +- foss +- notepad +- open-source +- text +- text-editor +ReleaseNotesUrl: https://github.com/notepad-plus-plus/notepad-plus-plus/releases/tag/v8.9.7 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/notepad-plus-plus/notepad-plus-plus/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/n/Notepad++/Notepad++/8.9.7/Notepad++.Notepad++.yaml b/manifests/n/Notepad++/Notepad++/8.9.7/Notepad++.Notepad++.yaml new file mode 100644 index 000000000000..43f1b45fe3a4 --- /dev/null +++ b/manifests/n/Notepad++/Notepad++/8.9.7/Notepad++.Notepad++.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: Notepad++.Notepad++ +PackageVersion: 8.9.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/o/OCBase/OCCT/Personal/16.1.11.0/OCBase.OCCT.Personal.installer.yaml b/manifests/o/OCBase/OCCT/Personal/17.0.9.0/OCBase.OCCT.Personal.installer.yaml similarity index 75% rename from manifests/o/OCBase/OCCT/Personal/16.1.11.0/OCBase.OCCT.Personal.installer.yaml rename to manifests/o/OCBase/OCCT/Personal/17.0.9.0/OCBase.OCCT.Personal.installer.yaml index ac56b2c0fdb1..d4780d2790b2 100644 --- a/manifests/o/OCBase/OCCT/Personal/16.1.11.0/OCBase.OCCT.Personal.installer.yaml +++ b/manifests/o/OCBase/OCCT/Personal/17.0.9.0/OCBase.OCCT.Personal.installer.yaml @@ -2,17 +2,17 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: OCBase.OCCT.Personal -PackageVersion: 16.1.11.0 +PackageVersion: 17.0.9.0 InstallerType: portable InstallModes: - interactive - silent - silentWithProgress UpgradeBehavior: uninstallPrevious -ReleaseDate: 2026-06-17 +ReleaseDate: 2026-07-12 Installers: - Architecture: x64 InstallerUrl: https://dl.ocbase.com/per/stable/OCCT.exe - InstallerSha256: A3ADEC5104E0BDB0617152B7FD327BC63444F373C51237AEB7B79C10A71ADD0E + InstallerSha256: CC10FB38267FEB92B77091205696AF34E3ECD477B726CA12AD3705F9475772D6 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/o/OCBase/OCCT/Personal/16.1.11.0/OCBase.OCCT.Personal.locale.en-US.yaml b/manifests/o/OCBase/OCCT/Personal/17.0.9.0/OCBase.OCCT.Personal.locale.en-US.yaml similarity index 95% rename from manifests/o/OCBase/OCCT/Personal/16.1.11.0/OCBase.OCCT.Personal.locale.en-US.yaml rename to manifests/o/OCBase/OCCT/Personal/17.0.9.0/OCBase.OCCT.Personal.locale.en-US.yaml index a68a56081931..9269adbbefd7 100644 --- a/manifests/o/OCBase/OCCT/Personal/16.1.11.0/OCBase.OCCT.Personal.locale.en-US.yaml +++ b/manifests/o/OCBase/OCCT/Personal/17.0.9.0/OCBase.OCCT.Personal.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: OCBase.OCCT.Personal -PackageVersion: 16.1.11.0 +PackageVersion: 17.0.9.0 PackageLocale: en-US Publisher: OCCT PublisherUrl: https://www.ocbase.com/ diff --git a/manifests/o/OCBase/OCCT/Personal/16.1.11.0/OCBase.OCCT.Personal.yaml b/manifests/o/OCBase/OCCT/Personal/17.0.9.0/OCBase.OCCT.Personal.yaml similarity index 89% rename from manifests/o/OCBase/OCCT/Personal/16.1.11.0/OCBase.OCCT.Personal.yaml rename to manifests/o/OCBase/OCCT/Personal/17.0.9.0/OCBase.OCCT.Personal.yaml index c6556e22f8e0..2a0cfc81e230 100644 --- a/manifests/o/OCBase/OCCT/Personal/16.1.11.0/OCBase.OCCT.Personal.yaml +++ b/manifests/o/OCBase/OCCT/Personal/17.0.9.0/OCBase.OCCT.Personal.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: OCBase.OCCT.Personal -PackageVersion: 16.1.11.0 +PackageVersion: 17.0.9.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/o/obot-platform/obot/v0.23.4/obot-platform.obot.installer.yaml b/manifests/o/obot-platform/obot/v0.23.4/obot-platform.obot.installer.yaml new file mode 100644 index 000000000000..9a93c564bee9 --- /dev/null +++ b/manifests/o/obot-platform/obot/v0.23.4/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.23.4 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: obot.exe + PortableCommandAlias: obot +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/obot-platform/obot/releases/download/v0.23.4/obot_v0.23.4_windows_amd64.zip + InstallerSha256: D14486D55AE6C3B0CC93E566AB3966425D966B9CD5D6242A2F15770B44554E02 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-07-14 diff --git a/manifests/o/obot-platform/obot/v0.23.4/obot-platform.obot.locale.en-US.yaml b/manifests/o/obot-platform/obot/v0.23.4/obot-platform.obot.locale.en-US.yaml new file mode 100644 index 000000000000..1a4ef21912d2 --- /dev/null +++ b/manifests/o/obot-platform/obot/v0.23.4/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.23.4 +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.23.4 +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.23.4/obot-platform.obot.yaml b/manifests/o/obot-platform/obot/v0.23.4/obot-platform.obot.yaml new file mode 100644 index 000000000000..de3b683d3df2 --- /dev/null +++ b/manifests/o/obot-platform/obot/v0.23.4/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.23.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/p/PawelSalawa/Letos/4.0.0/PawelSalawa.Letos.installer.yaml b/manifests/p/PawelSalawa/Letos/4.0.0/PawelSalawa.Letos.installer.yaml new file mode 100644 index 000000000000..2cbeda946d87 --- /dev/null +++ b/manifests/p/PawelSalawa/Letos/4.0.0/PawelSalawa.Letos.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: PawelSalawa.Letos +PackageVersion: 4.0.0 +InstallerType: inno +FileExtensions: +- db +- db3 +- s3db +- sdb +- sqlite +- sqlite3 +ProductCode: '{66E6E480-A7AE-4473-879F-C8699024904E}_is1' +ReleaseDate: 2026-06-23 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/pawelsalawa/letos/releases/download/4.0.0/Letos-4.0.0-windows-x64-setup.exe + InstallerSha256: 0984B245810A758EF0863A45E9F6C5416E2640DD3ED42F8696EDA63BBDEB38C5 + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/pawelsalawa/letos/releases/download/4.0.0/Letos-4.0.0-windows-x64-setup.exe + InstallerSha256: 0984B245810A758EF0863A45E9F6C5416E2640DD3ED42F8696EDA63BBDEB38C5 + InstallerSwitches: + Custom: /ALLUSERS +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/pawelsalawa/letos/releases/download/4.0.0/Letos-4.0.0-windows-arm64-setup.exe + InstallerSha256: 23DA7E9C3D23A7DF7E91BD528282FCAEC762D9D9E442B4BFFE304D2FC33EF20B + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/pawelsalawa/letos/releases/download/4.0.0/Letos-4.0.0-windows-arm64-setup.exe + InstallerSha256: 23DA7E9C3D23A7DF7E91BD528282FCAEC762D9D9E442B4BFFE304D2FC33EF20B + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/p/PawelSalawa/Letos/4.0.0/PawelSalawa.Letos.locale.en-US.yaml b/manifests/p/PawelSalawa/Letos/4.0.0/PawelSalawa.Letos.locale.en-US.yaml new file mode 100644 index 000000000000..cd11a874b5c0 --- /dev/null +++ b/manifests/p/PawelSalawa/Letos/4.0.0/PawelSalawa.Letos.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: PawelSalawa.Letos +PackageVersion: 4.0.0 +PackageLocale: en-US +Publisher: letos.org +PublisherUrl: https://letos.org/ +PublisherSupportUrl: https://github.com/pawelsalawa/letos/issues +Author: Paweł Salawa +PackageName: Letos +PackageUrl: https://letos.org/ +License: GPL-3.0 +LicenseUrl: https://github.com/pawelsalawa/letos/blob/HEAD/LICENSE +Copyright: Copyright © letos.org 2026 +ShortDescription: Create, edit, browse SQLite databases. +Description: Letos is desktop application for browsing and editing SQLite database files. It is aimed for people, who know what SQLite is, or what relational databases are in general. +Tags: +- database +- db +- sql +- sqlite +ReleaseNotesUrl: https://github.com/pawelsalawa/letos/blob/HEAD/ChangeLog.md#400 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/pawelsalawa/letos/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/PawelSalawa/Letos/4.0.0/PawelSalawa.Letos.locale.zh-CN.yaml b/manifests/p/PawelSalawa/Letos/4.0.0/PawelSalawa.Letos.locale.zh-CN.yaml new file mode 100644 index 000000000000..114c77037bc7 --- /dev/null +++ b/manifests/p/PawelSalawa/Letos/4.0.0/PawelSalawa.Letos.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: PawelSalawa.Letos +PackageVersion: 4.0.0 +PackageLocale: zh-CN +ShortDescription: 创建、编辑、浏览 SQLite 数据库。 +Description: Letos 是一款用于浏览和编辑 SQLite 数据库文件的桌面应用程序,面向了解 SQLite 或一般关系数据库的用户。 +Tags: +- db +- sql +- sqlite +- 数据库 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/p/PawelSalawa/Letos/4.0.0/PawelSalawa.Letos.yaml b/manifests/p/PawelSalawa/Letos/4.0.0/PawelSalawa.Letos.yaml new file mode 100644 index 000000000000..059ec2f7a322 --- /dev/null +++ b/manifests/p/PawelSalawa/Letos/4.0.0/PawelSalawa.Letos.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: PawelSalawa.Letos +PackageVersion: 4.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/p/Postman/Postman/12.19.2/Postman.Postman.installer.yaml b/manifests/p/Postman/Postman/12.19.2/Postman.Postman.installer.yaml new file mode 100644 index 000000000000..fcc17106c9e6 --- /dev/null +++ b/manifests/p/Postman/Postman/12.19.2/Postman.Postman.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: Postman.Postman +PackageVersion: 12.19.2 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +Protocols: +- postman +ProductCode: Postman +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + InstallerUrl: https://dl.pstmn.io/download/version/12.19.2/windows_64 + InstallerSha256: 683120B19260E1121BE02E252FCC85D35012AF83DFE0C2E79FEFF84221204ACD +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/p/Postman/Postman/12.19.2/Postman.Postman.locale.en-US.yaml b/manifests/p/Postman/Postman/12.19.2/Postman.Postman.locale.en-US.yaml new file mode 100644 index 000000000000..77930485f8dd --- /dev/null +++ b/manifests/p/Postman/Postman/12.19.2/Postman.Postman.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: Postman.Postman +PackageVersion: 12.19.2 +PackageLocale: en-US +Publisher: Postman +PublisherUrl: https://www.postman.com/ +PublisherSupportUrl: https://www.postman.com/support/ +PrivacyUrl: https://www.postman.com/legal/privacy-policy/ +Author: Postman, Inc. +PackageName: Postman +PackageUrl: https://www.postman.com/downloads/ +License: Proprietary +LicenseUrl: https://www.postman.com/legal/terms/ +Copyright: © 2026 Postman, Inc. +CopyrightUrl: https://www.postman.com/legal/terms/ +ShortDescription: The Collaboration Platform for API Development +Description: Postman is a collaboration platform for API development. Postman's features simplify each step of building an API and streamline collaboration so you can create better APIs — faster. +Moniker: postman +Tags: +- api +- automation +- debug +- develop +- development +- interface +- internet +- network +- request +- response +PurchaseUrl: https://www.postman.com/pricing/ +Documentations: +- DocumentLabel: Learning Center + DocumentUrl: https://learning.postman.com/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/Postman/Postman/12.19.2/Postman.Postman.locale.zh-CN.yaml b/manifests/p/Postman/Postman/12.19.2/Postman.Postman.locale.zh-CN.yaml new file mode 100644 index 000000000000..e72cc2480fa4 --- /dev/null +++ b/manifests/p/Postman/Postman/12.19.2/Postman.Postman.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: Postman.Postman +PackageVersion: 12.19.2 +PackageLocale: zh-CN +Publisher: Postman +PublisherUrl: https://www.postman.com/ +PublisherSupportUrl: https://www.postman.com/support/ +PrivacyUrl: https://www.postman.com/legal/privacy-policy/ +Author: Postman, Inc. +PackageName: Postman +PackageUrl: https://www.postman.com/downloads/ +License: 专有软件 +LicenseUrl: https://www.postman.com/legal/terms/ +Copyright: © 2026 Postman, Inc. +CopyrightUrl: https://www.postman.com/legal/terms/ +ShortDescription: API 开发协作平台 +Description: Postman 是一个 API 开发协作平台,简化构建 API 流程的每一步,并让协作流水线化,从而更快更好地创建 API。 +Tags: +- api +- 互联网 +- 响应 +- 开发 +- 接口 +- 网络 +- 自动化 +- 请求 +- 调试 +PurchaseUrl: https://www.postman.com/pricing/ +Documentations: +- DocumentLabel: 学习中心 + DocumentUrl: https://learning.postman.com/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/p/Postman/Postman/12.19.2/Postman.Postman.yaml b/manifests/p/Postman/Postman/12.19.2/Postman.Postman.yaml new file mode 100644 index 000000000000..b36b72b92227 --- /dev/null +++ b/manifests/p/Postman/Postman/12.19.2/Postman.Postman.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: Postman.Postman +PackageVersion: 12.19.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/p/PranshulSoni/OmniSearch/1.0.0/PranshulSoni.OmniSearch.installer.yaml b/manifests/p/PranshulSoni/OmniSearch/1.0.0/PranshulSoni.OmniSearch.installer.yaml new file mode 100644 index 000000000000..fa9767cc550f --- /dev/null +++ b/manifests/p/PranshulSoni/OmniSearch/1.0.0/PranshulSoni.OmniSearch.installer.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: PranshulSoni.OmniSearch +PackageVersion: 1.0.0 +InstallerType: inno +Scope: user +InstallerSwitches: + Silent: /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- + SilentWithProgress: /SILENT /SUPPRESSMSGBOXES /NORESTART /SP- +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/PranshulSoni/omnisearch/releases/download/v1.0.0/omnisearchsetup.exe + InstallerSha256: DDB1FEC95C3F13398BC1142C4732F774C7A6B39B80A8BE5F125A990F4B22C855 + AppsAndFeaturesEntries: + - DisplayName: omnisearch + Publisher: Pranshul Soni + ProductCode: omnisearch_is1 +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2026-07-01 diff --git a/manifests/p/PranshulSoni/OmniSearch/1.0.0/PranshulSoni.OmniSearch.locale.en-US.yaml b/manifests/p/PranshulSoni/OmniSearch/1.0.0/PranshulSoni.OmniSearch.locale.en-US.yaml new file mode 100644 index 000000000000..892f54885d39 --- /dev/null +++ b/manifests/p/PranshulSoni/OmniSearch/1.0.0/PranshulSoni.OmniSearch.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.10.0.schema.json + +PackageIdentifier: PranshulSoni.OmniSearch +PackageVersion: 1.0.0 +PackageLocale: en-US +Publisher: Pranshul Soni +PublisherUrl: https://github.com/PranshulSoni +PublisherSupportUrl: https://github.com/PranshulSoni/omnisearch/issues +Author: Pranshul Soni +PackageName: OmniSearch +PackageUrl: https://github.com/PranshulSoni/omnisearch +License: MIT +LicenseUrl: https://github.com/PranshulSoni/omnisearch/blob/lean-build/LICENSE +Copyright: Copyright (c) 2026 Pranshul Soni +ShortDescription: A fast, local-first Windows launcher to find everything on your PC from one shortcut. +Description: OmniSearch is a lightweight Windows launcher for searching apps, files, folders, file content, OCR text, browser history, clipboard history, Git activity, Windows settings, local commands, and AI agent chats from one keyboard shortcut. +Moniker: omnisearch +Tags: +- launcher +- search +- windows +- productivity +- clipboard +- ocr +- rust +ReleaseNotes: Initial public release of OmniSearch for Windows. +ReleaseNotesUrl: https://github.com/PranshulSoni/omnisearch/releases/tag/v1.0.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/EXE/138.0.7204.169/Google.Chrome.EXE.yaml b/manifests/p/PranshulSoni/OmniSearch/1.0.0/PranshulSoni.OmniSearch.yaml similarity index 56% rename from manifests/g/Google/Chrome/EXE/138.0.7204.169/Google.Chrome.EXE.yaml rename to manifests/p/PranshulSoni/OmniSearch/1.0.0/PranshulSoni.OmniSearch.yaml index 5622a5bb3295..8c8b3e10ccd3 100644 --- a/manifests/g/Google/Chrome/EXE/138.0.7204.169/Google.Chrome.EXE.yaml +++ b/manifests/p/PranshulSoni/OmniSearch/1.0.0/PranshulSoni.OmniSearch.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod +# Created using wingetcreate 1.12.8.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json -PackageIdentifier: Google.Chrome.EXE -PackageVersion: 138.0.7204.169 +PackageIdentifier: PranshulSoni.OmniSearch +PackageVersion: 1.0.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/p/polrivero/GitHubDesktopPlus/3.6.2-r1/polrivero.GitHubDesktopPlus.installer.yaml b/manifests/p/polrivero/GitHubDesktopPlus/3.6.2-r1/polrivero.GitHubDesktopPlus.installer.yaml new file mode 100644 index 000000000000..fcbdca8b9897 --- /dev/null +++ b/manifests/p/polrivero/GitHubDesktopPlus/3.6.2-r1/polrivero.GitHubDesktopPlus.installer.yaml @@ -0,0 +1,35 @@ +# 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: polrivero.GitHubDesktopPlus +PackageVersion: 3.6.2-r1 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +Protocols: +- github-windows +- x-github-client +- x-github-desktop-auth +ProductCode: DesktopPlus +ReleaseDate: 2026-07-04 +AppsAndFeaturesEntries: +- DisplayName: Desktop Plus + Publisher: Desktop Plus + ProductCode: DesktopPlus +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\DesktopPlus' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/desktop-plus/desktop-plus/releases/download/v3.6.2.1/DesktopPlus-v3.6.2.1-windows-x64.exe + InstallerSha256: A2C9E71FAFC83593A8CA699AF2A692F51D98F60DBF7DF99F4A39090523069027 +- Architecture: arm64 + InstallerUrl: https://github.com/desktop-plus/desktop-plus/releases/download/v3.6.2.1/DesktopPlus-v3.6.2.1-windows-arm64.exe + InstallerSha256: 6F70A32A8522C2495527194F27EBE0FC839F535ED9584184216847693498D682 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/p/polrivero/GitHubDesktopPlus/3.6.2-r1/polrivero.GitHubDesktopPlus.locale.en-US.yaml b/manifests/p/polrivero/GitHubDesktopPlus/3.6.2-r1/polrivero.GitHubDesktopPlus.locale.en-US.yaml new file mode 100644 index 000000000000..28b5a4fdc2da --- /dev/null +++ b/manifests/p/polrivero/GitHubDesktopPlus/3.6.2-r1/polrivero.GitHubDesktopPlus.locale.en-US.yaml @@ -0,0 +1,40 @@ +# 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: polrivero.GitHubDesktopPlus +PackageVersion: 3.6.2-r1 +PackageLocale: en-US +Publisher: pol-rivero +PublisherUrl: https://github.com/pol-rivero +PublisherSupportUrl: https://github.com/pol-rivero/github-desktop-plus/issues +Author: pol-rivero +PackageName: GitHub Desktop Plus +PackageUrl: https://github.com/pol-rivero/github-desktop-plus +License: MIT +LicenseUrl: https://github.com/desktop-plus/desktop-plus/blob/HEAD/LICENSE +Copyright: Copyright (c) GitHub, Inc. +ShortDescription: A GitHub Desktop fork with advanced functionality and Bitbucket, GitLab integration. +Description: An up-to-date fork of GitHub Desktop with additional features including multiple account support, Bitbucket and GitLab integration, commit search, multiple stashes per branch, and more. +Moniker: github-desktop-plus +Tags: +- bitbucket +- desktop-app +- git +- github +- gitlab +ReleaseNotes: |- + Upstream: + - GitHub Desktop 3.6.2-beta1 release notes + - GitHub Desktop 3.6.2 release notes + Changes and improvements: + - [#197] The "Reset to commit..." context menu item is now available for all commits, not just local-only (unpushed) commits. + Use it with caution! If you rewrite history on commits that other people have already pulled, you may cause problems for them. + - [#199] Linux: Use the OS's trust store (in addition to Chromium's) to validate certificates. This should help with some corporate environments that use self-signed certificates. + Fixes: + - [#205] Windows, macOS: Fixed a missing logo in the app's About dialog. + - Made the app icon slightly bigger to make its apparent size more similar to other icons. + - macOS: The app should now display the correct icon (new Desktop Plus logo). + - When using the Branch name presets feature, pressing Ctrl+1, Ctrl+2, etc. to quick-select a preset now works once again. +ReleaseNotesUrl: https://github.com/desktop-plus/desktop-plus/releases/tag/v3.6.2.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/polrivero/GitHubDesktopPlus/3.6.2-r1/polrivero.GitHubDesktopPlus.yaml b/manifests/p/polrivero/GitHubDesktopPlus/3.6.2-r1/polrivero.GitHubDesktopPlus.yaml new file mode 100644 index 000000000000..2e825ab1573f --- /dev/null +++ b/manifests/p/polrivero/GitHubDesktopPlus/3.6.2-r1/polrivero.GitHubDesktopPlus.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: polrivero.GitHubDesktopPlus +PackageVersion: 3.6.2-r1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/q/QuotationFactory/QFC/0.0.1-alpha/QuotationFactory.QFC.installer.yaml b/manifests/q/QuotationFactory/QFC/0.0.1-alpha/QuotationFactory.QFC.installer.yaml new file mode 100644 index 000000000000..d71f09713a94 --- /dev/null +++ b/manifests/q/QuotationFactory/QFC/0.0.1-alpha/QuotationFactory.QFC.installer.yaml @@ -0,0 +1,14 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json +PackageIdentifier: QuotationFactory.QFC +PackageVersion: 0.0.1-alpha +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: + - RelativeFilePath: qfc.exe + PortableCommandAlias: qfc +Installers: + - Architecture: x64 + InstallerUrl: https://github.com/quotationfactory/qf_cli/releases/download/v0.0.1-alpha/qfc-win-x64.zip + InstallerSha256: 7617358EBFC6BA69ED1B1D245E0B6CB356056F360451A6AF4365FA93DD0C73D8 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/q/QuotationFactory/QFC/0.0.1-alpha/QuotationFactory.QFC.locale.en-US.yaml b/manifests/q/QuotationFactory/QFC/0.0.1-alpha/QuotationFactory.QFC.locale.en-US.yaml new file mode 100644 index 000000000000..3eddacc9162f --- /dev/null +++ b/manifests/q/QuotationFactory/QFC/0.0.1-alpha/QuotationFactory.QFC.locale.en-US.yaml @@ -0,0 +1,24 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json +PackageIdentifier: QuotationFactory.QFC +PackageVersion: 0.0.1-alpha +PackageLocale: en-US +Publisher: Quotation Factory +PublisherUrl: https://github.com/quotationfactory/qf_cli +PublisherSupportUrl: https://github.com/quotationfactory/qf_cli/issues +PackageName: Quotation Factory CLI +PackageUrl: https://github.com/quotationfactory/qf_cli +License: Proprietary +LicenseUrl: https://github.com/quotationfactory/qf_cli +Copyright: Copyright (c) Quotation Factory +ShortDescription: CLI for the Quotation Factory / Rhodium24 manufacturing API. +Description: A self-contained command-line tool for discovering, describing, and calling Quotation Factory / Rhodium24 API endpoints with structured JSON output. +Moniker: qfc +Tags: + - quotation-factory + - qfc + - rhodium24 + - manufacturing + - cli + - api +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/q/QuotationFactory/QFC/0.0.1-alpha/QuotationFactory.QFC.yaml b/manifests/q/QuotationFactory/QFC/0.0.1-alpha/QuotationFactory.QFC.yaml new file mode 100644 index 000000000000..37125b140582 --- /dev/null +++ b/manifests/q/QuotationFactory/QFC/0.0.1-alpha/QuotationFactory.QFC.yaml @@ -0,0 +1,6 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json +PackageIdentifier: QuotationFactory.QFC +PackageVersion: 0.0.1-alpha +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/r/RClone-Manager/rclone-manager/v0.3.0/RClone-Manager.rclone-manager.installer.yaml b/manifests/r/RClone-Manager/rclone-manager/v0.3.0/RClone-Manager.rclone-manager.installer.yaml new file mode 100644 index 000000000000..7f96e82c9107 --- /dev/null +++ b/manifests/r/RClone-Manager/rclone-manager/v0.3.0/RClone-Manager.rclone-manager.installer.yaml @@ -0,0 +1,19 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: RClone-Manager.rclone-manager +PackageVersion: v0.3.0 +InstallerLocale: en-US +InstallerType: wix +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Zarestia-Dev/rclone-manager/releases/download/v0.3.0/RClone.Manager_0.3.0_x64_en-US.msi + InstallerSha256: B84D9AF5153CEADA0B7763A3A52B6CCA94359401C2716D2F24D8C7F20CAF1AC0 + ProductCode: '{925D9FAC-4627-42CC-8957-7FFE7F48AB06}' +- Architecture: arm64 + InstallerUrl: https://github.com/Zarestia-Dev/rclone-manager/releases/download/v0.3.0/RClone.Manager_0.3.0_arm64_en-US.msi + InstallerSha256: 2C23783C961CCB29FCF10B1992D58EDCCE72E51B57E194EF61379DA581468317 + ProductCode: '{024E26FA-5AD2-4354-BED2-6C37DFB6E424}' +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-07-14 diff --git a/manifests/r/RClone-Manager/rclone-manager/v0.3.0/RClone-Manager.rclone-manager.locale.en-US.yaml b/manifests/r/RClone-Manager/rclone-manager/v0.3.0/RClone-Manager.rclone-manager.locale.en-US.yaml new file mode 100644 index 000000000000..1b144d41fa80 --- /dev/null +++ b/manifests/r/RClone-Manager/rclone-manager/v0.3.0/RClone-Manager.rclone-manager.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: RClone-Manager.rclone-manager +PackageVersion: v0.3.0 +PackageLocale: en-US +Publisher: RClone-Manager +PublisherUrl: https://github.com/Zarestia-Dev +PublisherSupportUrl: https://github.com/Zarestia-Dev/rclone-manager/issues +PackageName: RClone Manager +PackageUrl: https://github.com/Zarestia-Dev/rclone-manager +License: GPL-3.0-or-later +ShortDescription: A powerful, cross-platform GUI for managing Rclone remotes with style and ease. +Tags: +- adwaita +- angular +- angular-material +- dropbox +- fuse +- gnome +- google-drive +- onedrive +- rclone-gui +- s3 +- tauri +ReleaseNotesUrl: https://github.com/Zarestia-Dev/rclone-manager/releases/tag/v0.3.0 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/Zarestia-Dev/rclone-manager/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/RClone-Manager/rclone-manager/v0.3.0/RClone-Manager.rclone-manager.yaml b/manifests/r/RClone-Manager/rclone-manager/v0.3.0/RClone-Manager.rclone-manager.yaml new file mode 100644 index 000000000000..4e63e53ef641 --- /dev/null +++ b/manifests/r/RClone-Manager/rclone-manager/v0.3.0/RClone-Manager.rclone-manager.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: RClone-Manager.rclone-manager +PackageVersion: v0.3.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/r/RafalZG/ClaudeSessionsSidekick/1.0.5/RafalZG.ClaudeSessionsSidekick.installer.yaml b/manifests/r/RafalZG/ClaudeSessionsSidekick/1.0.5/RafalZG.ClaudeSessionsSidekick.installer.yaml new file mode 100644 index 000000000000..371e8c2d1959 --- /dev/null +++ b/manifests/r/RafalZG/ClaudeSessionsSidekick/1.0.5/RafalZG.ClaudeSessionsSidekick.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: RafalZG.ClaudeSessionsSidekick +PackageVersion: 1.0.5 +InstallerType: exe +Scope: user +InstallModes: +- silent +- silentWithProgress +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent + InstallLocation: --installto "" + Log: --log "" +UpgradeBehavior: install +ProductCode: ClaudeSessionsSidekick +ReleaseDate: 2026-07-14 +AppsAndFeaturesEntries: +- ProductCode: ClaudeSessionsSidekick +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\ClaudeSessionsSidekick' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/RafalZG/claude-sessions-sidekick/releases/download/v1.0.5/ClaudeSessionsSidekick-win-Setup.exe + InstallerSha256: C58162BEEACBD1D3B1DC0749154902BB6A74BAD7E53E9ECF59CDD0ACA7E13355 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/r/RafalZG/ClaudeSessionsSidekick/1.0.5/RafalZG.ClaudeSessionsSidekick.locale.en-US.yaml b/manifests/r/RafalZG/ClaudeSessionsSidekick/1.0.5/RafalZG.ClaudeSessionsSidekick.locale.en-US.yaml new file mode 100644 index 000000000000..8913d0c22d3e --- /dev/null +++ b/manifests/r/RafalZG/ClaudeSessionsSidekick/1.0.5/RafalZG.ClaudeSessionsSidekick.locale.en-US.yaml @@ -0,0 +1,56 @@ +# 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: RafalZG.ClaudeSessionsSidekick +PackageVersion: 1.0.5 +PackageLocale: en-US +Publisher: Rafał Zygmunt +PublisherUrl: https://github.com/RafalZG +PublisherSupportUrl: https://github.com/RafalZG/claude-sessions-sidekick/issues +Author: Rafał Zygmunt +PackageName: Claude Sessions Sidekick +PackageUrl: https://github.com/RafalZG/claude-sessions-sidekick +License: MIT +LicenseUrl: https://github.com/RafalZG/claude-sessions-sidekick/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 Rafał Zygmunt +CopyrightUrl: https://github.com/RafalZG/claude-sessions-sidekick/blob/main/LICENSE +ShortDescription: Tray sidekick for Claude Code — usage tracking, session browser, quick launchers, prompt library. +Description: |- + Claude Sessions Sidekick is a Windows tray utility that complements Anthropic's Claude Code CLI. + It provides a persistent at-a-glance view of usage limits (5-hour rolling block and weekly + Sonnet/Opus utilization), a searchable browser for past Claude Code sessions across projects + with per-session notes and color tags, project quick launchers with global hotkeys, a reusable + prompt library, and an MCP server browser. + + The app reads only local Claude Code data and uses the user's own OAuth token for the official + Claude Code usage API — no telemetry, no third-party servers. +Moniker: claude-sessions-sidekick +Tags: +- ai +- anthropic +- claude +- claude-code +- developer-tools +- dotnet +- llm +- productivity +- session-manager +- tray +ReleaseNotes: |- + Added + - Session Browser → right-click → Resume with model now offers + Fable (1M) alongside Sonnet / Opus / Haiku. It passes the full + claude-fable-5 id to claude --model (no stable short alias). Note: + on Team/Pro plans Fable's included access ended and it now bills via + usage credits, so the resume will only succeed if your account has Fable + access enabled. + Fixed + - Context-window sizing now recognises Claude Fable 5 and Mythos 5 + (both 1M), so their sessions no longer get the stale 200k default — a + 569k-token Fable session was rendering as "ctx 284%" with a bogus + "Consider /compact now". Unrecognised newer model IDs now also assume 1M + (every current Claude tier ships at 1M); only Haiku and genuinely-legacy + pre-4 IDs (claude-3-*, claude-2*) stay at 200k. +ReleaseNotesUrl: https://github.com/RafalZG/claude-sessions-sidekick/releases/tag/v1.0.5 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/RafalZG/ClaudeSessionsSidekick/1.0.5/RafalZG.ClaudeSessionsSidekick.yaml b/manifests/r/RafalZG/ClaudeSessionsSidekick/1.0.5/RafalZG.ClaudeSessionsSidekick.yaml new file mode 100644 index 000000000000..54a71cfd6c8d --- /dev/null +++ b/manifests/r/RafalZG/ClaudeSessionsSidekick/1.0.5/RafalZG.ClaudeSessionsSidekick.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: RafalZG.ClaudeSessionsSidekick +PackageVersion: 1.0.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/r/RaijuMounun/intqual/1.0.1/RaijuMounun.intqual.installer.yaml b/manifests/r/RaijuMounun/intqual/1.0.1/RaijuMounun.intqual.installer.yaml new file mode 100644 index 000000000000..63566150089a --- /dev/null +++ b/manifests/r/RaijuMounun/intqual/1.0.1/RaijuMounun.intqual.installer.yaml @@ -0,0 +1,11 @@ +PackageIdentifier: RaijuMounun.intqual +PackageVersion: 1.0.1 +InstallerType: portable +Commands: + - intqual +Installers: + - Architecture: x64 + InstallerUrl: https://github.com/RaijuMounun/intqual/releases/download/v1.0.1/intqual-windows-amd64.exe + InstallerSha256: 9DB6668CE58B39DCDB9A9EA7860B4C0BD3767DEDF6F9E6EB7921D238569A818F +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/r/RaijuMounun/intqual/1.0.1/RaijuMounun.intqual.locale.en-US.yaml b/manifests/r/RaijuMounun/intqual/1.0.1/RaijuMounun.intqual.locale.en-US.yaml new file mode 100644 index 000000000000..f12df5db144d --- /dev/null +++ b/manifests/r/RaijuMounun/intqual/1.0.1/RaijuMounun.intqual.locale.en-US.yaml @@ -0,0 +1,13 @@ +PackageIdentifier: RaijuMounun.intqual +PackageVersion: 1.0.1 +PackageLocale: en-US +Publisher: Eren Keskinoğlu +PackageName: Intqual +License: MIT +ShortDescription: A dual-layer asynchronous network latency analyzer and observability tool. +Tags: + - ping + - network + - tui +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/r/RaijuMounun/intqual/1.0.1/RaijuMounun.intqual.yaml b/manifests/r/RaijuMounun/intqual/1.0.1/RaijuMounun.intqual.yaml new file mode 100644 index 000000000000..11ed8fb682e4 --- /dev/null +++ b/manifests/r/RaijuMounun/intqual/1.0.1/RaijuMounun.intqual.yaml @@ -0,0 +1,5 @@ +PackageIdentifier: RaijuMounun.intqual +PackageVersion: 1.0.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/r/ReadAI/ReadAI/1.28.0/ReadAI.ReadAI.installer.yaml b/manifests/r/ReadAI/ReadAI/1.28.0/ReadAI.ReadAI.installer.yaml new file mode 100644 index 000000000000..90f18d32fdd0 --- /dev/null +++ b/manifests/r/ReadAI/ReadAI/1.28.0/ReadAI.ReadAI.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: ReadAI.ReadAI +PackageVersion: 1.28.0 +InstallerType: nullsoft +Scope: user +UpgradeBehavior: install +ProductCode: Read AI +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + InstallerUrl: https://desktop.read.ai/updates/windows/x86_64/1.28.0/Read%20AI_1.28.0_x64-setup.exe + InstallerSha256: 1DC86028067F3E33AE84B0DF496A5B71B34B2DB3D82CD4E9AD9019F84C72B1B3 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/r/ReadAI/ReadAI/1.28.0/ReadAI.ReadAI.locale.en-US.yaml b/manifests/r/ReadAI/ReadAI/1.28.0/ReadAI.ReadAI.locale.en-US.yaml new file mode 100644 index 000000000000..87ab25feea52 --- /dev/null +++ b/manifests/r/ReadAI/ReadAI/1.28.0/ReadAI.ReadAI.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: ReadAI.ReadAI +PackageVersion: 1.28.0 +PackageLocale: en-US +Publisher: readai +PublisherUrl: https://www.read.ai/ +PublisherSupportUrl: https://support.read.ai/ +PrivacyUrl: https://www.read.ai/privacy-policy +Author: Read AI, Inc. +PackageName: Read AI +PackageUrl: https://www.read.ai/desktop +License: Proprietary +LicenseUrl: https://www.read.ai/termsofservice +Copyright: © 2026 Read AI, Inc. +CopyrightUrl: https://www.read.ai/termsofservice +ShortDescription: Capture meetings anywhere, no bot necessary. +Description: Capture and transcribe conversations instantly with the Read AI app for Mac and Windows - no bot needed. Record any meeting, get real-time transcripts and AI summaries and get insights from Search Copilot anywhere you work. +Tags: +- conference +- conferencing +- meeting +- speech +- speech-recognition +- transcribe +- transcription +- video-conferencing +- voice +- voice-conferencing +ReleaseNotes: Update to version 1.28.0 +PurchaseUrl: https://www.read.ai/plans-pricing +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/ReadAI/ReadAI/1.28.0/ReadAI.ReadAI.locale.zh-CN.yaml b/manifests/r/ReadAI/ReadAI/1.28.0/ReadAI.ReadAI.locale.zh-CN.yaml new file mode 100644 index 000000000000..2a6c7acda6ab --- /dev/null +++ b/manifests/r/ReadAI/ReadAI/1.28.0/ReadAI.ReadAI.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: ReadAI.ReadAI +PackageVersion: 1.28.0 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 随时随地捕捉会议内容,无需使用机器人。 +Description: 使用适用于 Mac 和 Windows 的 Read AI 应用,即时捕捉并转录对话——无需机器人。录制任何会议,获取实时转录文本和 AI 摘要,并通过 Search Copilot 在您工作的任何地方获得洞察。 +Tags: +- 会议 +- 开会 +- 视频会议 +- 识别 +- 语音 +- 语音会议 +- 语音识别 +- 转写 +- 转录 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/r/ReadAI/ReadAI/1.28.0/ReadAI.ReadAI.yaml b/manifests/r/ReadAI/ReadAI/1.28.0/ReadAI.ReadAI.yaml new file mode 100644 index 000000000000..878c55f63b01 --- /dev/null +++ b/manifests/r/ReadAI/ReadAI/1.28.0/ReadAI.ReadAI.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: ReadAI.ReadAI +PackageVersion: 1.28.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/r/Readdle/Spark/3.30.1/Readdle.Spark.installer.yaml b/manifests/r/Readdle/Spark/3.30.1/Readdle.Spark.installer.yaml index 9cc8d70913f2..e39466ebdc83 100644 --- a/manifests/r/Readdle/Spark/3.30.1/Readdle.Spark.installer.yaml +++ b/manifests/r/Readdle/Spark/3.30.1/Readdle.Spark.installer.yaml @@ -9,10 +9,10 @@ InstallerSwitches: Upgrade: --updated UpgradeBehavior: install ProductCode: 09e2d43b-2e9a-5a23-a54c-87838a95fcb3 -ReleaseDate: 2026-07-10 +ReleaseDate: 2026-07-14 Installers: - Architecture: x64 - InstallerUrl: https://downloads.sparkmailapp.com/Spark3/win/dist/3.30.1.139872/Spark.exe - InstallerSha256: 74DC557199784AB47AB13C3BDCAB98FAFC04895037B7E6BAFB80BB1AE6CC78E0 + InstallerUrl: https://downloads.sparkmailapp.com/Spark3/win/dist/3.30.1.139922/Spark.exe + InstallerSha256: 1629D53E385434B3837182225DB36AA1F54E83F7610E6C4D090A38C4F004C952 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/r/Readdle/Spark/3.30.1/Readdle.Spark.locale.en-US.yaml b/manifests/r/Readdle/Spark/3.30.1/Readdle.Spark.locale.en-US.yaml index d514273db18d..b1714934ce16 100644 --- a/manifests/r/Readdle/Spark/3.30.1/Readdle.Spark.locale.en-US.yaml +++ b/manifests/r/Readdle/Spark/3.30.1/Readdle.Spark.locale.en-US.yaml @@ -20,11 +20,11 @@ Tags: - email - mail ReleaseNotes: |- - Spark now uses a more secure connection for Microsoft 365, Outlook, and Hotmail accounts, with one sign-in for email and calendar. - Already use a Microsoft account? Just sign in again when Spark asks. It takes a few seconds. - Share your feedback at support@sparkmailapp.com + In this update: + Just some fresh paint and tune-ups. No bigs. + We're always here for you at support@sparkmailapp.com P.S. If you encounter any issues with the automatic update, please use the following link to download the update manually: - https://downloads.sparkmailapp.com/Spark3/win/dist/3.30.1.139872/Spark.exe + https://downloads.sparkmailapp.com/Spark3/win/dist/3.30.1.139922/Spark.exe ReleaseNotesUrl: https://sparkmailapp.com/spark3/win/changelog PurchaseUrl: https://sparkmailapp.com/pricing Documentations: diff --git a/manifests/r/RyensX/OpenCodex/2.0.2/RyensX.OpenCodex.installer.yaml b/manifests/r/RyensX/OpenCodex/2.0.2/RyensX.OpenCodex.installer.yaml new file mode 100644 index 000000000000..b725a916d5f4 --- /dev/null +++ b/manifests/r/RyensX/OpenCodex/2.0.2/RyensX.OpenCodex.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: RyensX.OpenCodex +PackageVersion: 2.0.2 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: ce0e88bf-c4e1-5d5f-bd8c-44770c64a07a +ReleaseDate: 2026-07-10 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/RyensX/OpenCodex/releases/download/2.0.2/OpenCodex.Setup.2.0.2.exe + InstallerSha256: 2E2A54BFF3C902B2F5380A0A9B5A47B31D8116782BA003742A6E53FC04E2ABEB + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/RyensX/OpenCodex/releases/download/2.0.2/OpenCodex.Setup.2.0.2.exe + InstallerSha256: 2E2A54BFF3C902B2F5380A0A9B5A47B31D8116782BA003742A6E53FC04E2ABEB + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/r/RyensX/OpenCodex/2.0.2/RyensX.OpenCodex.locale.en-US.yaml b/manifests/r/RyensX/OpenCodex/2.0.2/RyensX.OpenCodex.locale.en-US.yaml new file mode 100644 index 000000000000..5d290a8e1bd2 --- /dev/null +++ b/manifests/r/RyensX/OpenCodex/2.0.2/RyensX.OpenCodex.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: RyensX.OpenCodex +PackageVersion: 2.0.2 +PackageLocale: en-US +Publisher: OpenAI +PublisherUrl: https://github.com/RyensX +PublisherSupportUrl: https://github.com/RyensX/OpenCodex/issues +PackageName: OpenCodex +PackageUrl: https://github.com/RyensX/OpenCodex +License: AGPL-3.0 +LicenseUrl: https://github.com/RyensX/OpenCodex/blob/HEAD/LICENSE +ShortDescription: A middleware layer for Codex Desktop. It lets you use a phone, tablet, or another computer to access and operate Codex on a target machine through a browser, making it suitable for continuous AI Coding in LAN or remote LAN environments. +Description: |- + OpenCodex is a middleware layer for Codex Desktop. It lets you use a phone, tablet, or another computer to access and operate Codex on a target machine through a browser, making it suitable for continuous AI Coding in LAN or remote LAN environments. + + Features + - Access Codex on the target machine through a browser, with no proxy network or extra account requirements, and support for phones, tablets, computers, and other devices. + - Native Codex experience. + - Supports local access, LAN access, and remote LAN access with Tailscale / ZeroTier / VPN. + - Supports setting an access password to avoid unauthenticated exposure. + - Provides a launcher for visual configuration of the listen address, port, access password, and more. + - Automatically updates to the local Codex Desktop version on startup, keeping compatibility with new-version features. + - Provides optimizations for mobile devices. +Tags: +- codex +ReleaseNotes: |- + - Compatible with the new ChatGPT Desktop and GPT5.6 + - Supports remote file downloads: You can right-click on blank areas, files, or folders in the file tree (sidebar) to download files to your local machine. + - Supports remotely selecting an existing folder to create/open a project: Added workspace root picker UI and gateway-side IPC/HTTP support. + - Enhanced login security: Added brute-force login protection and rate limiting logic. + - Added an "Anti-Hibernation" setting to the Launcher. + - Added an "Official Runtime Scan" switch to the Launcher. + - Adjustments related to macOS dmp support for x64 architecture. + Fixes + - Fixed remote file upload processing, completed picked files IPC and web bridge logic. + - Fixed the issue of missing credentials when loading the PWA manifest. + - Fixed the adaptation of web-shell top window controls/layout under PWA Window Controls Overlay. + - Fixed the issue of the gateway's local workspace folder selector not working. + - Fixed compatibility issues related to Windows remote file testing. Optimizations/Refactoring + - Launcher log writing optimization + - Simplified Gateway static resource mapping logic. + - Added/expanded multiple test coverage sets: auth rate limit, local files, static assets, workspace roots, official runtime, log writer, etc. + Documentation + - Supplemented environment variable documentation. + - Added Linux support information. +ReleaseNotesUrl: https://github.com/RyensX/OpenCodex/releases/tag/2.0.2 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/RyensX/OpenCodex/2.0.2/RyensX.OpenCodex.locale.zh-CN.yaml b/manifests/r/RyensX/OpenCodex/2.0.2/RyensX.OpenCodex.locale.zh-CN.yaml new file mode 100644 index 000000000000..1fe515f70edb --- /dev/null +++ b/manifests/r/RyensX/OpenCodex/2.0.2/RyensX.OpenCodex.locale.zh-CN.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: RyensX.OpenCodex +PackageVersion: 2.0.2 +PackageLocale: zh-CN +ShortDescription: 一个 Codex Desktop 中间层,可以让你使用手机、平板或另一台电脑通过浏览器里访问并操作目标机器上的 Codex,适合在局域网或远程局域网环境中持续 AI Coding。 +Description: |- + OpenCodex 是一个 Codex Desktop 中间层,它可以让你使用手机、平板或另一台电脑通过浏览器里访问并操作目标机器上的 Codex,适合在局域网或远程局域网环境中持续 AI Coding。 + + 特性 + - 通过浏览器访问目标机器上的 Codex,无需魔法网络和账号,支持手机、平板、电脑等多种设备。 + - 原汁原味 Codex 使用体验。 + - 支持本机访问、局域网访问和配合 Tailscale / ZeroTier / VPN 的远程局域网访问。 + - 支持设置访问密码,避免无认证暴露。 + - 提供桌面启动器,可可视化配置监听地址、端口和访问密码等。 + - 启动时会自动更新到本地 Codex Desktop 版本,自动兼容新版本功能。 + - 针对移动端提供优化。 +ReleaseNotes: |- + - 兼容全新的 ChatGPT Desktop 和 GPT5.6 + - 支持远程文件下载:可以在文件树(侧栏)右键空白处、文件、文件夹下载文件到本地。 + - 支持远程选择“已有文件夹”创建/打开项目:新增 workspace root picker UI 和 gateway 侧 IPC/HTTP 支持。 + - 登录安全增强:增加登录暴力破解防护和限流逻辑。 + - Launcher 新增“防休眠”设置。 + - Launcher 新增“官方 runtime 扫描”开关。 + - macOS dmp 支持 x64 架构相关调整。 + 修复 + - 修复远程文件上传处理,补齐 picked files IPC 与 web bridge 逻辑。 + - 修复 PWA manifest 加载时缺少 credentials 的问题。 + - 修复 PWA Window Controls Overlay 下 web-shell 顶部窗口控件/布局适配。 + - 修复 gateway 本地 workspace 文件夹选择器失效问题。 + - 修复 Windows 远程文件相关测试兼容性。 + 优化/重构 + - Launcher 日志写入优化 + - Gateway 静态资源映射逻辑简化。 + - 新增/扩展多组测试覆盖:auth rate limit、local files、static assets、workspace roots、official runtime、log writer 等。 + 文档 + - 补充环境变量文档。 + - 增加 Linux 支持说明。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/r/RyensX/OpenCodex/2.0.2/RyensX.OpenCodex.yaml b/manifests/r/RyensX/OpenCodex/2.0.2/RyensX.OpenCodex.yaml new file mode 100644 index 000000000000..957f32d4a6d6 --- /dev/null +++ b/manifests/r/RyensX/OpenCodex/2.0.2/RyensX.OpenCodex.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: RyensX.OpenCodex +PackageVersion: 2.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/r/rchase999/scratchtext/1.0.0/rchase999.scratchtext.installer.yaml b/manifests/r/rchase999/scratchtext/1.0.0/rchase999.scratchtext.installer.yaml new file mode 100644 index 000000000000..df2080be9408 --- /dev/null +++ b/manifests/r/rchase999/scratchtext/1.0.0/rchase999.scratchtext.installer.yaml @@ -0,0 +1,15 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: rchase999.scratchtext +PackageVersion: 1.0.0 +InstallerType: portable +Commands: +- scratchtext +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/rchase999/scratchtext/releases/download/v1.0.0/scratchtext.exe + InstallerSha256: 31AA4E73069EF37E387A2F3EFB0CE2905795EC2582DA104BF39162B9083B55D5 +ManifestType: installer +ManifestVersion: 1.6.0 +ReleaseDate: 2026-07-01 diff --git a/manifests/r/rchase999/scratchtext/1.0.0/rchase999.scratchtext.locale.en-US.yaml b/manifests/r/rchase999/scratchtext/1.0.0/rchase999.scratchtext.locale.en-US.yaml new file mode 100644 index 000000000000..e1584d65bf14 --- /dev/null +++ b/manifests/r/rchase999/scratchtext/1.0.0/rchase999.scratchtext.locale.en-US.yaml @@ -0,0 +1,35 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: rchase999.scratchtext +PackageVersion: 1.0.0 +PackageLocale: en-US +Publisher: rchase999 +PublisherUrl: https://github.com/rchase999 +PublisherSupportUrl: https://github.com/rchase999/scratchtext/issues +Author: rchase999 +PackageName: scratchtext +PackageUrl: https://github.com/rchase999/scratchtext +License: MIT +LicenseUrl: https://github.com/rchase999/scratchtext/blob/main/LICENSE +Copyright: Copyright (c) 2026 rchase999 +ShortDescription: A text-based language that compiles to and decompiles from Scratch .sb3 projects. +Description: |- + scratchtext is a command-line tool for working with Scratch projects as text. + It compiles a readable .scratch source file into a Scratch .sb3 project, and + decompiles any .sb3 back into .scratch source plus its images and sounds. + You can drop your own PNG/JPG/SVG images into a folder and reference them as + sprites and backdrops. Every block round-trips losslessly, including all + built-in extensions (Pen, Music, Text to Speech) and custom TurboWarp + extensions. +Moniker: scratchtext +Tags: +- scratch +- sb3 +- compiler +- decompiler +- turbowarp +- education +- cli +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/r/rchase999/scratchtext/1.0.0/rchase999.scratchtext.yaml b/manifests/r/rchase999/scratchtext/1.0.0/rchase999.scratchtext.yaml new file mode 100644 index 000000000000..6def485b57d6 --- /dev/null +++ b/manifests/r/rchase999/scratchtext/1.0.0/rchase999.scratchtext.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: rchase999.scratchtext +PackageVersion: 1.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/s/SST/opencode/1.17.20/SST.opencode.installer.yaml b/manifests/s/SST/opencode/1.17.20/SST.opencode.installer.yaml new file mode 100644 index 000000000000..1d3ecb502217 --- /dev/null +++ b/manifests/s/SST/opencode/1.17.20/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.17.20 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: opencode.exe +Commands: +- opencode +ReleaseDate: 2026-07-13 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/anomalyco/opencode/releases/download/v1.17.20/opencode-windows-x64.zip + InstallerSha256: 1D7438CF9B4C6B45FEE325003B4452B06F4C14BE29977EA81595A705165EC646 +- Architecture: arm64 + InstallerUrl: https://github.com/anomalyco/opencode/releases/download/v1.17.20/opencode-windows-arm64.zip + InstallerSha256: E1D33374EB1B6CD3ABD609AE2FEB0572214A68FD2A2BDCFD1003CC38B41D14B2 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/SST/opencode/1.17.20/SST.opencode.locale.en-US.yaml b/manifests/s/SST/opencode/1.17.20/SST.opencode.locale.en-US.yaml new file mode 100644 index 000000000000..9c68886a3b43 --- /dev/null +++ b/manifests/s/SST/opencode/1.17.20/SST.opencode.locale.en-US.yaml @@ -0,0 +1,42 @@ +# 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.17.20 +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 + - Removed an obsolete Codex workaround that could interfere with OpenAI Luna Responses Lite requests. + Improvements + - Updated Azure AI support for GPT-5.6. +ReleaseNotesUrl: https://github.com/anomalyco/opencode/releases/tag/v1.17.20 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://opencode.ai/docs/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/SST/opencode/1.17.20/SST.opencode.locale.zh-CN.yaml b/manifests/s/SST/opencode/1.17.20/SST.opencode.locale.zh-CN.yaml new file mode 100644 index 000000000000..2efc081ecdc5 --- /dev/null +++ b/manifests/s/SST/opencode/1.17.20/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.17.20 +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.17.20/SST.opencode.yaml b/manifests/s/SST/opencode/1.17.20/SST.opencode.yaml new file mode 100644 index 000000000000..577f740b5243 --- /dev/null +++ b/manifests/s/SST/opencode/1.17.20/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.17.20 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/SciScope/SciScopeTUI/0.1.2/SciScope.SciScopeTUI.installer.yaml b/manifests/s/SciScope/SciScopeTUI/0.1.2/SciScope.SciScopeTUI.installer.yaml new file mode 100644 index 000000000000..35e10c7d48c3 --- /dev/null +++ b/manifests/s/SciScope/SciScopeTUI/0.1.2/SciScope.SciScopeTUI.installer.yaml @@ -0,0 +1,20 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: SciScope.SciScopeTUI +PackageVersion: 0.1.2 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: sciscope-tui.exe + PortableCommandAlias: sciscope-tui +Commands: +- sciscope-tui +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Timcai06/SciScope/releases/download/v0.1.2/sciscope-tui_windows_amd64.zip + InstallerSha256: 877B79B8DAC5F5214B3E6157CCDE8C9D97A69C681A76ADE92F8593EE0B5E9D67 +- Architecture: arm64 + InstallerUrl: https://github.com/Timcai06/SciScope/releases/download/v0.1.2/sciscope-tui_windows_arm64.zip + InstallerSha256: 208F77A1FB3C60C1AE57D1292CAFC714B4A794102F3948055D2BA0F435E88347 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/s/SciScope/SciScopeTUI/0.1.2/SciScope.SciScopeTUI.locale.en-US.yaml b/manifests/s/SciScope/SciScopeTUI/0.1.2/SciScope.SciScopeTUI.locale.en-US.yaml new file mode 100644 index 000000000000..a4b18ffd62cb --- /dev/null +++ b/manifests/s/SciScope/SciScopeTUI/0.1.2/SciScope.SciScopeTUI.locale.en-US.yaml @@ -0,0 +1,24 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: SciScope.SciScopeTUI +PackageVersion: 0.1.2 +PackageLocale: en-US +Publisher: SciScope +PublisherUrl: https://github.com/Timcai06 +PublisherSupportUrl: https://github.com/Timcai06/SciScope/issues +Author: SciScope contributors +PackageName: SciScope TUI +PackageUrl: https://github.com/Timcai06/SciScope +License: Proprietary +ShortDescription: Terminal client for the SciScope research agent. +Description: SciScope TUI is a terminal client for a grounded research agent. It can run an offline demo or connect to a SciScope backend through SCISCOPE_BACKEND. +Moniker: sciscope-tui +Tags: +- ai +- agent +- research +- tui +- literature +ReleaseNotesUrl: https://github.com/Timcai06/SciScope/releases/tag/v0.1.2 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/s/SciScope/SciScopeTUI/0.1.2/SciScope.SciScopeTUI.yaml b/manifests/s/SciScope/SciScopeTUI/0.1.2/SciScope.SciScopeTUI.yaml new file mode 100644 index 000000000000..d0ecfa1f4afc --- /dev/null +++ b/manifests/s/SciScope/SciScopeTUI/0.1.2/SciScope.SciScopeTUI.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: SciScope.SciScopeTUI +PackageVersion: 0.1.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/s/SerZhyAle/DocHtmlTranslate/26.0714.1658/SerZhyAle.DocHtmlTranslate.installer.yaml b/manifests/s/SerZhyAle/DocHtmlTranslate/26.0714.1658/SerZhyAle.DocHtmlTranslate.installer.yaml new file mode 100644 index 000000000000..fb545253fa4d --- /dev/null +++ b/manifests/s/SerZhyAle/DocHtmlTranslate/26.0714.1658/SerZhyAle.DocHtmlTranslate.installer.yaml @@ -0,0 +1,19 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: SerZhyAle.DocHtmlTranslate +PackageVersion: 26.0714.1658 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: doc-html-translate.exe + PortableCommandAlias: doc-html-translate +- RelativeFilePath: doc-html-ui.exe + PortableCommandAlias: doc-html-ui +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/SerZhyAle/doc-html-translate/releases/download/v26.0714.1658/doc-html-translate-26.0714.1658-windows-x64.zip + InstallerSha256: 58384D99000E46D508444BEB5FA60CF89F68AAD6416C5A5EB8F35BBFD558338A +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-07-14 diff --git a/manifests/s/SerZhyAle/DocHtmlTranslate/26.0714.1658/SerZhyAle.DocHtmlTranslate.locale.en-US.yaml b/manifests/s/SerZhyAle/DocHtmlTranslate/26.0714.1658/SerZhyAle.DocHtmlTranslate.locale.en-US.yaml new file mode 100644 index 000000000000..c90ee2b33820 --- /dev/null +++ b/manifests/s/SerZhyAle/DocHtmlTranslate/26.0714.1658/SerZhyAle.DocHtmlTranslate.locale.en-US.yaml @@ -0,0 +1,51 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: SerZhyAle.DocHtmlTranslate +PackageVersion: 26.0714.1658 +PackageLocale: en-US +Publisher: SZA +PublisherUrl: https://github.com/SerZhyAle +PublisherSupportUrl: https://github.com/SerZhyAle/doc-html-translate/issues +Author: Serhii Zhyhunenko +PackageName: doc-html-translate +PackageUrl: https://github.com/SerZhyAle/doc-html-translate +License: MIT +LicenseUrl: https://github.com/SerZhyAle/doc-html-translate/blob/main/LICENSE +Copyright: Copyright (c) 2026 SerZhyAle +ShortDescription: Convert EPUB, PDF, MOBI, AZW3, FB2, RTF, TXT, Markdown and HTML to clean local HTML with a real table of contents, image-text OCR, and optional Google or Ollama translation. +Description: |- + doc-html-translate is a Windows app that converts documents (EPUB, PDF, MOBI, AZW3, FB2, + RTF, TXT, Markdown, HTML) into clean local HTML with generated navigation and a real + multi-level table of contents. A built-in reader adds light/sepia/dark/night themes, text + size and font controls, and remembers your reading position. It can recognize text inside + images (OCR - English bundled, more languages on demand) and optionally translate everything + via the Google Cloud Translation API or a local Ollama model. Convert to one long single page + or keep chapters with a table of contents. Re-opening an already-converted book is instant. + The package ships both the CLI (doc-html-translate) and a small GUI launcher (doc-html-ui). + pdftotext is bundled inside the binary; MOBI and AZW3 conversion additionally requires + Calibre to be installed (non-DRM files only). +Moniker: doc-html-translate +Tags: +- azw3 +- cli +- ebook +- epub +- fb2 +- google-translate +- html +- markdown +- mobi +- ocr +- ollama +- pdf +- rtf +- translation +- txt +- windows +ReleaseNotesUrl: https://github.com/SerZhyAle/doc-html-translate/releases/tag/v26.0714.1658 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/SerZhyAle/doc-html-translate/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/SerZhyAle/DocHtmlTranslate/26.0714.1658/SerZhyAle.DocHtmlTranslate.yaml b/manifests/s/SerZhyAle/DocHtmlTranslate/26.0714.1658/SerZhyAle.DocHtmlTranslate.yaml new file mode 100644 index 000000000000..5070ba9fa65f --- /dev/null +++ b/manifests/s/SerZhyAle/DocHtmlTranslate/26.0714.1658/SerZhyAle.DocHtmlTranslate.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: SerZhyAle.DocHtmlTranslate +PackageVersion: 26.0714.1658 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/SmokeTurner/Vouch/2026.7.2/SmokeTurner.Vouch.installer.yaml b/manifests/s/SmokeTurner/Vouch/2026.7.2/SmokeTurner.Vouch.installer.yaml new file mode 100644 index 000000000000..ad79739c87cc --- /dev/null +++ b/manifests/s/SmokeTurner/Vouch/2026.7.2/SmokeTurner.Vouch.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: SmokeTurner.Vouch +PackageVersion: 2026.7.2 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: vouch.exe + PortableCommandAlias: vouch +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/vouch-sh/vouch/releases/download/v2026.7.2/vouch-v2026.7.2-x86_64-pc-windows-msvc.zip + InstallerSha256: 85B038EA9597303A9602A6B51190FB1CAC34F357F77072BB8285AFEF4D511332 +- Architecture: arm64 + InstallerUrl: https://github.com/vouch-sh/vouch/releases/download/v2026.7.2/vouch-v2026.7.2-aarch64-pc-windows-msvc.zip + InstallerSha256: 27406A10EBE18706E02579AC6E4CA30083453A63A160D1900D1947111B0F4C53 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/SmokeTurner/Vouch/2026.7.2/SmokeTurner.Vouch.locale.en-US.yaml b/manifests/s/SmokeTurner/Vouch/2026.7.2/SmokeTurner.Vouch.locale.en-US.yaml new file mode 100644 index 000000000000..0649d6432056 --- /dev/null +++ b/manifests/s/SmokeTurner/Vouch/2026.7.2/SmokeTurner.Vouch.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: SmokeTurner.Vouch +PackageVersion: 2026.7.2 +PackageLocale: en-US +Publisher: Smoke Turner, LLC +PublisherUrl: https://github.com/vouch-sh +PublisherSupportUrl: https://github.com/vouch-sh/vouch/issues +Author: Smoke Turner, LLC +PackageName: Vouch +PackageUrl: https://github.com/vouch-sh/vouch +License: Apache-2.0 +LicenseUrl: https://github.com/vouch-sh/vouch/blob/main/LICENSE-APACHE +Copyright: Copyright (c) Smoke Turner, LLC +ShortDescription: Hardware-backed identity for developers +Description: |- + Vouch is a hardware-backed authentication system that issues short-lived + credentials only after a human touches a YubiKey. One touch, one PIN, one + 8-hour session — then SSH, AWS, Kubernetes, and more just work. + + Vouch requires physical presence for every credential issuance, replacing + long-lived API keys and password-plus-push MFA with FIDO2-verified, time- + bounded credentials. +Moniker: vouch +Tags: +- aws +- cli +- fido2 +- kubernetes +- oidc +- ssh +- webauthn +- yubikey +ReleaseNotesUrl: https://github.com/vouch-sh/vouch/releases/tag/v2026.7.2 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/SmokeTurner/Vouch/2026.7.2/SmokeTurner.Vouch.yaml b/manifests/s/SmokeTurner/Vouch/2026.7.2/SmokeTurner.Vouch.yaml new file mode 100644 index 000000000000..f76c58e128d5 --- /dev/null +++ b/manifests/s/SmokeTurner/Vouch/2026.7.2/SmokeTurner.Vouch.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: SmokeTurner.Vouch +PackageVersion: 2026.7.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/Snowflake/SnowflakeCLI/3.22.1.0/Snowflake.SnowflakeCLI.installer.yaml b/manifests/s/Snowflake/SnowflakeCLI/3.22.1.0/Snowflake.SnowflakeCLI.installer.yaml new file mode 100644 index 000000000000..e291ce7cce73 --- /dev/null +++ b/manifests/s/Snowflake/SnowflakeCLI/3.22.1.0/Snowflake.SnowflakeCLI.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: Snowflake.SnowflakeCLI +PackageVersion: 3.22.1.0 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: TESTFILEPRODUCTDIR="" +UpgradeBehavior: install +Commands: +- snow +ProductCode: '{51377535-F551-4732-A2FA-22B4741093C3}' +AppsAndFeaturesEntries: +- UpgradeCode: '{74BDE2A7-BA7F-3B99-A9C9-67B28155C13A}' +Installers: +- Architecture: x64 + InstallerUrl: https://sfc-repo.snowflakecomputing.com/snowflake-cli/windows_x86_64/3.22.1/snowflake-cli-3.22.1.0-x86_64.msi + InstallerSha256: 868FAAD7736EA873D298EEB6D15AACA2A3AE7C6C2B08BD2368D14379A4724BBC +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/Snowflake/SnowflakeCLI/3.22.1.0/Snowflake.SnowflakeCLI.locale.en-US.yaml b/manifests/s/Snowflake/SnowflakeCLI/3.22.1.0/Snowflake.SnowflakeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..43602b60a7ec --- /dev/null +++ b/manifests/s/Snowflake/SnowflakeCLI/3.22.1.0/Snowflake.SnowflakeCLI.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: Snowflake.SnowflakeCLI +PackageVersion: 3.22.1.0 +PackageLocale: en-US +Publisher: Snowflake, Inc. +PublisherUrl: https://www.snowflake.com/ +PublisherSupportUrl: https://www.snowflake.com/en/support/ +PrivacyUrl: https://www.snowflake.com/en/legal/privacy/privacy-policy/ +Author: Snowflake, Inc. +PackageName: Snowflake CLI +PackageUrl: https://docs.snowflake.com/en/developer-guide/snowflake-cli/index +License: Proprietary +LicenseUrl: https://www.snowflake.com/en/legal/terms-of-service/ +Copyright: © 2026 Snowflake Inc. All Rights Reserved +CopyrightUrl: https://www.snowflake.com/en/legal/terms-of-service/ +ShortDescription: A command-line tool for Snowflake developers to create, manage, update, and view apps running on Snowflake across workloads such as Streamlit in Snowflake, the Snowflake Native App Framework, Snowpark Container Services, and Snowpark. +Description: |- + Snowflake CLI is an open-source command-line tool explicitly designed for developer-centric workloads in addition to SQL operations. It is a flexible and extensible tool that can accommodate modern development practices and technologies. + With Snowflake CLI, developers can create, manage, update, and view apps running on Snowflake across workloads such as Streamlit in Snowflake, the Snowflake Native App Framework, Snowpark Container Services, and Snowpark. It supports a range of Snowflake features, including user-defined functions, stored procedures, Streamlit in Snowflake, and SQL execution. +Tags: +- database +- snowflake +- sql +ReleaseNotesUrl: https://docs.snowflake.com/en/release-notes/clients-drivers/snowflake-cli-2026 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/Snowflake/SnowflakeCLI/3.22.1.0/Snowflake.SnowflakeCLI.locale.zh-CN.yaml b/manifests/s/Snowflake/SnowflakeCLI/3.22.1.0/Snowflake.SnowflakeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..56c25cfa71b8 --- /dev/null +++ b/manifests/s/Snowflake/SnowflakeCLI/3.22.1.0/Snowflake.SnowflakeCLI.locale.zh-CN.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: Snowflake.SnowflakeCLI +PackageVersion: 3.22.1.0 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 面向 Snowflake 开发者的命令行工具,用于创建、管理、更新和查看运行在 Snowflake 平台上的应用,支持 Streamlit in Snowflake、Snowflake 原生应用框架、Snowpark 容器服务和 Snowpark 等工作负载。 +Description: |- + Snowflake CLI 是一款专为开发者设计的开源命令行工具,除支持 SQL 操作外,更专注于开发工作负载场景。作为灵活可扩展的工具,它能完美适配现代开发实践与技术栈。 + 通过 Snowflake CLI,开发者可以针对以下工作负载创建、管理、更新和查看运行在 Snowflake 平台的应用:Snowflake 中的 Streamlit、原生应用框架、Snowpark 容器服务以及 Snowpark 开发。该工具全面支持 Snowflake 多项特性,包括用户自定义函数、存储过程、Streamlit in Snowflake 应用以及 SQL 脚本执行。 +Tags: +- snowflake +- sql +- 数据库 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/s/Snowflake/SnowflakeCLI/3.22.1.0/Snowflake.SnowflakeCLI.yaml b/manifests/s/Snowflake/SnowflakeCLI/3.22.1.0/Snowflake.SnowflakeCLI.yaml new file mode 100644 index 000000000000..16ace19d0b44 --- /dev/null +++ b/manifests/s/Snowflake/SnowflakeCLI/3.22.1.0/Snowflake.SnowflakeCLI.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: Snowflake.SnowflakeCLI +PackageVersion: 3.22.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/Sourcegraph/Amp/0.0.1784031823-g5829be/Sourcegraph.Amp.installer.yaml b/manifests/s/Sourcegraph/Amp/0.0.1784046309-g5bdc66/Sourcegraph.Amp.installer.yaml similarity index 63% rename from manifests/s/Sourcegraph/Amp/0.0.1784031823-g5829be/Sourcegraph.Amp.installer.yaml rename to manifests/s/Sourcegraph/Amp/0.0.1784046309-g5bdc66/Sourcegraph.Amp.installer.yaml index bfe1d940a5c6..4c8aa3e8f8f0 100644 --- a/manifests/s/Sourcegraph/Amp/0.0.1784031823-g5829be/Sourcegraph.Amp.installer.yaml +++ b/manifests/s/Sourcegraph/Amp/0.0.1784046309-g5bdc66/Sourcegraph.Amp.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: Sourcegraph.Amp -PackageVersion: 0.0.1784031823-g5829be +PackageVersion: 0.0.1784046309-g5bdc66 InstallerType: portable Commands: - amp @@ -11,7 +11,7 @@ Dependencies: - PackageIdentifier: Microsoft.VCRedist.2015+.x64 Installers: - Architecture: x64 - InstallerUrl: https://static.ampcode.com/cli/0.0.1784031823-g5829be/amp-windows-x64-baseline.exe - InstallerSha256: 06E5286CDED570FFFA814D1A8DEEA34E7C049258AF3A57C49E9AF614F4584EDA + InstallerUrl: https://static.ampcode.com/cli/0.0.1784046309-g5bdc66/amp-windows-x64-baseline.exe + InstallerSha256: 8FB09141D41D726EE256ADA492B9FEDD38747340E13D742CE0643379653E6E29 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/s/Sourcegraph/Amp/0.0.1784031823-g5829be/Sourcegraph.Amp.locale.en-US.yaml b/manifests/s/Sourcegraph/Amp/0.0.1784046309-g5bdc66/Sourcegraph.Amp.locale.en-US.yaml similarity index 97% rename from manifests/s/Sourcegraph/Amp/0.0.1784031823-g5829be/Sourcegraph.Amp.locale.en-US.yaml rename to manifests/s/Sourcegraph/Amp/0.0.1784046309-g5bdc66/Sourcegraph.Amp.locale.en-US.yaml index 606db21d82b1..0a725e97fdf6 100644 --- a/manifests/s/Sourcegraph/Amp/0.0.1784031823-g5829be/Sourcegraph.Amp.locale.en-US.yaml +++ b/manifests/s/Sourcegraph/Amp/0.0.1784046309-g5bdc66/Sourcegraph.Amp.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: Sourcegraph.Amp -PackageVersion: 0.0.1784031823-g5829be +PackageVersion: 0.0.1784046309-g5bdc66 PackageLocale: en-US Publisher: Sourcegraph, Inc. PublisherUrl: https://ampcode.com/ diff --git a/manifests/s/Sourcegraph/Amp/0.0.1784031823-g5829be/Sourcegraph.Amp.locale.zh-CN.yaml b/manifests/s/Sourcegraph/Amp/0.0.1784046309-g5bdc66/Sourcegraph.Amp.locale.zh-CN.yaml similarity index 96% rename from manifests/s/Sourcegraph/Amp/0.0.1784031823-g5829be/Sourcegraph.Amp.locale.zh-CN.yaml rename to manifests/s/Sourcegraph/Amp/0.0.1784046309-g5bdc66/Sourcegraph.Amp.locale.zh-CN.yaml index 1e10db4b9199..4d01c1ba48ec 100644 --- a/manifests/s/Sourcegraph/Amp/0.0.1784031823-g5829be/Sourcegraph.Amp.locale.zh-CN.yaml +++ b/manifests/s/Sourcegraph/Amp/0.0.1784046309-g5bdc66/Sourcegraph.Amp.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: Sourcegraph.Amp -PackageVersion: 0.0.1784031823-g5829be +PackageVersion: 0.0.1784046309-g5bdc66 PackageLocale: zh-CN License: 专有软件 ShortDescription: 适用于终端与编辑器的前沿编码智能体。 diff --git a/manifests/s/Sourcegraph/Amp/0.0.1784031823-g5829be/Sourcegraph.Amp.yaml b/manifests/s/Sourcegraph/Amp/0.0.1784046309-g5bdc66/Sourcegraph.Amp.yaml similarity index 85% rename from manifests/s/Sourcegraph/Amp/0.0.1784031823-g5829be/Sourcegraph.Amp.yaml rename to manifests/s/Sourcegraph/Amp/0.0.1784046309-g5bdc66/Sourcegraph.Amp.yaml index f65a92d9c0bc..4ca583bae880 100644 --- a/manifests/s/Sourcegraph/Amp/0.0.1784031823-g5829be/Sourcegraph.Amp.yaml +++ b/manifests/s/Sourcegraph/Amp/0.0.1784046309-g5bdc66/Sourcegraph.Amp.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: Sourcegraph.Amp -PackageVersion: 0.0.1784031823-g5829be +PackageVersion: 0.0.1784046309-g5bdc66 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/t/TJSmith/Anodizer/0.19.0/TJSmith.Anodizer.installer.yaml b/manifests/t/TJSmith/Anodizer/0.19.0/TJSmith.Anodizer.installer.yaml index 09bc246af080..3c0366c75b1d 100644 --- a/manifests/t/TJSmith/Anodizer/0.19.0/TJSmith.Anodizer.installer.yaml +++ b/manifests/t/TJSmith/Anodizer/0.19.0/TJSmith.Anodizer.installer.yaml @@ -8,7 +8,7 @@ ProductCode: '{9125D362-49C8-5FE4-A58E-05465A5388F7}' Installers: - Architecture: arm64 InstallerUrl: https://github.com/tj-smith47/anodizer/releases/download/v0.19.0/anodizer-0.19.0-windows-arm64.zip - InstallerSha256: 0e333bfaf90bd0142877768dafa84030914c907ada9192d5e4535535a46d1b68 + InstallerSha256: ce61f746b854265fc09a8a1a913017a225e11f82688ddde7b3461b10bc97a5b7 UpgradeBehavior: install NestedInstallerType: portable NestedInstallerFiles: @@ -19,7 +19,7 @@ Installers: - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 - Architecture: x64 InstallerUrl: https://github.com/tj-smith47/anodizer/releases/download/v0.19.0/anodizer-0.19.0-windows-amd64.zip - InstallerSha256: d65a26c0c1651630dc47f96c05ede86a3f64d490ebd37fdcc83cbcec048f3383 + InstallerSha256: 611d0a64a3abf153a4a7dd2376e5095c58bbfc58b77deeb80e9cc75fef1fdd8f UpgradeBehavior: install NestedInstallerType: portable NestedInstallerFiles: diff --git a/manifests/t/TJSmith/Anodizer/0.20.0/TJSmith.Anodizer.installer.yaml b/manifests/t/TJSmith/Anodizer/0.20.0/TJSmith.Anodizer.installer.yaml new file mode 100644 index 000000000000..6c8ce898b89f --- /dev/null +++ b/manifests/t/TJSmith/Anodizer/0.20.0/TJSmith.Anodizer.installer.yaml @@ -0,0 +1,33 @@ +# This file was generated by anodizer (https://github.com/tj-smith47/anodizer). DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json +PackageIdentifier: TJSmith.Anodizer +PackageVersion: 0.20.0 +InstallerLocale: en-US +InstallerType: zip +ProductCode: '{049C02AE-5E20-5C64-8981-4F1A3A52BD22}' +Installers: +- Architecture: arm64 + InstallerUrl: https://github.com/tj-smith47/anodizer/releases/download/v0.20.0/anodizer-0.20.0-windows-arm64.zip + InstallerSha256: ef9bd215cb266b34b7f948297d447a381f7d85b015848d298df45fd78a0cc7db + UpgradeBehavior: install + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: anodizer.exe + PortableCommandAlias: anodizer + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 +- Architecture: x64 + InstallerUrl: https://github.com/tj-smith47/anodizer/releases/download/v0.20.0/anodizer-0.20.0-windows-amd64.zip + InstallerSha256: 599f8339ebad9d0205a860f793a41d3be67ec15e6d919f60d0197ea1792929ef + UpgradeBehavior: install + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: anodizer.exe + PortableCommandAlias: anodizer + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2026-07-14 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/t/TJSmith/Anodizer/0.20.0/TJSmith.Anodizer.locale.en-US.yaml b/manifests/t/TJSmith/Anodizer/0.20.0/TJSmith.Anodizer.locale.en-US.yaml new file mode 100644 index 000000000000..5b433c80e9f1 --- /dev/null +++ b/manifests/t/TJSmith/Anodizer/0.20.0/TJSmith.Anodizer.locale.en-US.yaml @@ -0,0 +1,30 @@ +# This file was generated by anodizer (https://github.com/tj-smith47/anodizer). DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json +PackageIdentifier: TJSmith.Anodizer +PackageVersion: 0.20.0 +PackageLocale: en-US +Publisher: TJ Smith +PublisherUrl: https://github.com/tj-smith47 +PublisherSupportUrl: https://github.com/tj-smith47/anodizer/issues +Author: TJ Smith +PackageName: anodizer +PackageUrl: https://github.com/tj-smith47/anodizer +License: MIT OR Apache-2.0 +Copyright: Copyright © 2026 TJ Smith +ShortDescription: Rust-native release automation +Description: A Rust-native release automation tool +Moniker: anodizer +Tags: +- release +- automation +- rust +ReleaseNotes: See release-notes URL for the full changelog. +ReleaseNotesUrl: https://github.com/tj-smith47/anodizer/releases/tag/v0.20.0 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://tj-smith47.github.io/anodizer +- DocumentLabel: Source + DocumentUrl: https://github.com/tj-smith47/anodizer +InstallationNotes: Run `anodizer --help` after installation. +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/t/TJSmith/Anodizer/0.20.0/TJSmith.Anodizer.yaml b/manifests/t/TJSmith/Anodizer/0.20.0/TJSmith.Anodizer.yaml new file mode 100644 index 000000000000..fcaf12059fcc --- /dev/null +++ b/manifests/t/TJSmith/Anodizer/0.20.0/TJSmith.Anodizer.yaml @@ -0,0 +1,7 @@ +# This file was generated by anodizer (https://github.com/tj-smith47/anodizer). DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json +PackageIdentifier: TJSmith.Anodizer +PackageVersion: 0.20.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/t/TenacityTeam/Tenacity/1.3.5/TenacityTeam.Tenacity.installer.yaml b/manifests/t/TenacityTeam/Tenacity/1.3.5/TenacityTeam.Tenacity.installer.yaml new file mode 100644 index 000000000000..56c233800014 --- /dev/null +++ b/manifests/t/TenacityTeam/Tenacity/1.3.5/TenacityTeam.Tenacity.installer.yaml @@ -0,0 +1,59 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: TenacityTeam.Tenacity +PackageVersion: 1.3.5 +InstallerType: inno +FileExtensions: +- aup +- aup3 +ProductCode: Tenacity_is1 +ReleaseDate: 2026-07-05 +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://codeberg.org/tenacityteam/tenacity/releases/download/v1.3.5/tenacity-win-1.3.5-x86.exe + InstallerSha256: 2EA931CFF38C23630144610746C1B4F9FF7B2311712BA2FA42AF434926C2FA29 + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x86 + Scope: machine + InstallerUrl: https://codeberg.org/tenacityteam/tenacity/releases/download/v1.3.5/tenacity-win-1.3.5-x86.exe + InstallerSha256: 2EA931CFF38C23630144610746C1B4F9FF7B2311712BA2FA42AF434926C2FA29 + InstallerSwitches: + Custom: /ALLUSERS + ElevationRequirement: elevatesSelf + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Tenacity' +- Architecture: x64 + Scope: user + InstallerUrl: https://codeberg.org/tenacityteam/tenacity/releases/download/v1.3.5/tenacity-win-1.3.5-x86_64.exe + InstallerSha256: E8C5D9090CA2FFB64789E3DF9991CF7E05989C63482D811B9B7D8E1277643C5D + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://codeberg.org/tenacityteam/tenacity/releases/download/v1.3.5/tenacity-win-1.3.5-x86_64.exe + InstallerSha256: E8C5D9090CA2FFB64789E3DF9991CF7E05989C63482D811B9B7D8E1277643C5D + InstallerSwitches: + Custom: /ALLUSERS + ElevationRequirement: elevatesSelf + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Tenacity' +- Architecture: arm64 + Scope: user + InstallerUrl: https://codeberg.org/tenacityteam/tenacity/releases/download/v1.3.5/tenacity-win-1.3.5-arm.exe + InstallerSha256: A6895F71EA0606D2794E98CA8500156B53947EE0DC4BCF8FFA0A888847AFE649 + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: arm64 + Scope: machine + InstallerUrl: https://codeberg.org/tenacityteam/tenacity/releases/download/v1.3.5/tenacity-win-1.3.5-arm.exe + InstallerSha256: A6895F71EA0606D2794E98CA8500156B53947EE0DC4BCF8FFA0A888847AFE649 + InstallerSwitches: + Custom: /ALLUSERS + ElevationRequirement: elevatesSelf + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Tenacity' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/t/TenacityTeam/Tenacity/1.3.5/TenacityTeam.Tenacity.locale.en-US.yaml b/manifests/t/TenacityTeam/Tenacity/1.3.5/TenacityTeam.Tenacity.locale.en-US.yaml new file mode 100644 index 000000000000..44ab78529b8d --- /dev/null +++ b/manifests/t/TenacityTeam/Tenacity/1.3.5/TenacityTeam.Tenacity.locale.en-US.yaml @@ -0,0 +1,92 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: TenacityTeam.Tenacity +PackageVersion: 1.3.5 +PackageLocale: en-US +Publisher: Tenacity Team +PublisherUrl: https://tenacityaudio.org/ +PublisherSupportUrl: https://tenacityaudio.org/#community-buttons +PackageName: Tenacity +PackageUrl: https://codeberg.org/tenacityteam/tenacity +License: GPL-2.0 +LicenseUrl: https://codeberg.org/tenacityteam/tenacity/src/branch/HEAD/LICENSE.txt +Copyright: Copyright © 2021-2026 Tenacity Team. +ShortDescription: An easy-to-use, cross-platform multi-track audio editor/recorder. +Description: |- + Tenacity is a free and open source audio editor forked from the popular audio editor Audacity. Tenacity is licensed under the GNU General Public License version 2 or later. It contains the following features: + - Recording from audio devices, real or virtual. + - Support for importing from and exporting to a wide range of audio formats, extensible with FFmpeg. + - High quality audio processing, including up to 32-bit float audio support. + - Extensibility with support for plug-ins, providing support for VST 2, LADSPA/LV2, and AU plugins. + - Support for scripting in the built-in scripting language Nyquist, or in Python, Perl, and other languages with named pipes. + - Editing arbitrary sampling and multi-track timeline. + - Accessibility including editing via keyboard, screen reader support and narration support. + - Tools useful in the analysis of signals, including audio. + Tenacity does not have a single application when it comes to audio processing. Musicians recording real instruments can make a song in Tenacity, podcasters can edit their episodes in Tenacity, and even academic researchers can analyze signals using Tenacity. We don’t intend to focus Tenacity on a single area of audio processing, but rather, we intend to focus Tenacity over audio processing in general, including the aforementioned applications. +Moniker: tenacity +Tags: +- audio +- editor +ReleaseNotes: |- + This release was originally unplanned, but after learning about several vulnerabilities being discovered in libexpat, one of Tenacity's core dependencies, we decided to make a new release. However, as time progressed, several other issues came up that needed addressing. This took longer than expected, primarily due to busy schedules and personal issues, but despite that, we present to you a new release bringing fixes to several long-standing issues. + This release is also the first release with an original maintainer. Due to the project's early history, they had to step away for a long while, but since they are doing better, they chose to come back. We'd like to welcome them in coming back and we're both excited to see where Tenacity goes! + New + - ASIO is now natively supported in Tenacity. + - Windows on ARM is now supported. We expect minimal issues, if any, on Windows on ARM, with an exception due to a lack of plugin support (we expect only native ARM plugins to work, but we have not tested this aspect yet). + - Windows 11 or later is required for the Windows on ARM installer. The other installers continue to require Windows 7 (SP1) or later. + - macOS builds have returned. + - Tenacity supports macOS 10.15 or later, both on Intel and Apple Silicon. + - Note that these builds are unsigned and thus require extra steps to get working. Open a Terminal window and run xattr -d com.apple.quarantine /path/to/Tenacity.app + Changes + - For packagers: wxWidgets 3.3 and later is now supported. + - On Windows, some parts of the UI now better adapt to dark mode if enabled. (However, Tenacity's theme will not automatically adapt to dark mode; you need to wait for 1.4 for that). + - Update about dialog: + - Remove build date. It wasn't necessarily accurate on Linux depending on who packaged Tenacity (e.g., through our official Flatpak). + - Move an original maintainer from emeritus to active. + - Miscellaneous: CPack is now used for building packages across all platforms, including Inno Setup installers. + Fixes + - Fixed several build issues. + - Fixed a spectrogram crash (backported from 1.4 alpha 1). + FFmpeg + Instead of the previous FFmpeg 6.1.2, we now have FFmpeg 7.1.5. Support for FFmpeg 7 was backported in some previous release accidentally, but you can use it to your benefit :) + Unfortunately, we do not provide FFmpeg libraries for Windows on ARM. However, you can download FFmpeg 7.1.5 for Windows on ARM here. Configuration is the same as if you were on x86(_64). Keep in mind that we have not tested these binaries, so if any issue comes up, please create a new issue for it and we'll try to resolve it. We will continue to provide our own builds for 64-bit and, for now, 32-bit Windows. + Under normal circumstances, the 1.3.x series would be locked to only FFmpeg 6.x. Because it's been a while since the last stable release (over a year and a half), and 1.3.x supports up to FFmpeg 7.x, we will provide FFmpeg 7.x libraries. These libraries have been compiled manually under Windows using MSVC and MSYS2 tools. + Hashes and Verification + There are two ways to verify your downloads: via PGP signatures or SHA256 hashes. + PGP Signatures + IMPORTANT: we made yet another signing key, this time containing both active maintainers. The new key's fingerprint is 29FE9795E57619BC854CF9A730EFEEFA63DF61BA. + If you are using gpg, you can import it like so: + $ gpg --keyserver pgp.mit.edu --recv-keys 29FE9795E57619BC854CF9A730EFEEFA63DF61BA + Then you can verify your download like so: + $ gpg --verify /path/to/download-signature.asc /path/to/download + For example, to verify the AppImage using gpg: + # Receive the key first if you haven't done so + $ gpg --keyserver pgp.mit.edu --recv-keys 29FE9795E57619BC854CF9A730EFEEFA63DF61BA + + # Then verify the release like so + $ gpg --verify tenacity-linux-1.3.5-x86_64.AppImage.asc tenacity-linux-1.3.5-x86_64.AppImage + gpg: Signature made Sun 05 Jul 2026 03:29:52 PM PDT + gpg: using EDDSA key 9F7144C4FEC3D116E8569F728F5DF0C25B19955F + gpg: Good signature from "Avery King (Tenacity) " [full] + gpg: aka "Emily Mabrey (Tenacity) " [full] + If it says there's a bad signature, your download may have been tampered with. Try checking against the SHA256 hash (down below) for additional verification. If the hash doesn't match, try redownloading the file. If it does match, please open an issue so we can correct the signature. + Windows + Windows 64-bit installer: e8c5d9090ca2ffb64789e3df9991cf7e05989c63482d811b9b7d8e1277643c5d Windows 32-bit installer: 2ea931cff38c23630144610746c1b4f9ff7b2311712ba2fa42af434926c2fa29 Windows on ARM installer: a6895f71ea0606d2794e98ca8500156b53947ee0dc4bcf8ffa0a888847afe649 + FFmpeg Downloads + 32-bit FFmpeg libraries: 367ccc8321c99806b826d664f85382d9a0dafc6327bc9b166f2691856aecdea0 64-bit FFmpeg libraries: 9551d79195bb37bd48178e760c7d099acd3d323e14d0ff849e3dbd45bf820819 + macOS + macOS Apple Silicon DMG: dca2c606b8ab2146c4aebc98a27d5791c587f677f6fbccd846515a694bde49a1 macOS Intel DMG: 51825677212b8864c163a0011c5cc4d1f5010cca3c459ec8c9a4e7754f14b6cc + Linux + Tenacity AppImage: 53202c1f3f12ea3c264221a31c88890463533d8debd1677f96f904273db7844f + Source Tarball + Source tarball: 0446e14e09046a0c72d0fdfbbf3823a2ba3451204de7b93f715cc4fe2333e781 + Other Notes + Other updates, such as through your distribution's repos or our official Flatpak, will occur shortly, but will proably span over the next few days as we all perform testing. Our official Flatpak will also be updated to use the latest runtime and dependencies. + There should be one last 1.3.x release if one comes, that being version 1.3.6. This will contain minimal but otherwise more important updates. After that release, we plan to no longer make releases for 1.3.x unless deemed necessary (e.g., because of a security vulnerability). +ReleaseNotesUrl: https://codeberg.org/tenacityteam/tenacity/releases/tag/v1.3.4 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://tenacityaudio.org/docs/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/t/TenacityTeam/Tenacity/1.3.5/TenacityTeam.Tenacity.locale.zh-CN.yaml b/manifests/t/TenacityTeam/Tenacity/1.3.5/TenacityTeam.Tenacity.locale.zh-CN.yaml new file mode 100644 index 000000000000..29724579c840 --- /dev/null +++ b/manifests/t/TenacityTeam/Tenacity/1.3.5/TenacityTeam.Tenacity.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: TenacityTeam.Tenacity +PackageVersion: 1.3.5 +PackageLocale: zh-CN +ShortDescription: 一款简单易用、跨平台的多轨音频编辑/录音工具。 +Description: |- + Tenacity 是一个免费的开源音频编辑器,从广受欢迎的音频编辑器 Audacity 分支而来。Tenacity 采用 GNU 通用公共许可证第 2 版或更高版本授权。它具有以下功能: + - 从真实或虚拟的音频设备录音。 + - 支持导入和导出多种音频格式,可通过 FFmpeg 扩展。 + - 高质量音频处理,支持高达 32 位浮点音频。 + - 可扩展性支持插件,包括 VST 2、LADSPA/LV2 和 AU 插件。 + - 支持使用内置脚本语言 Nyquist,或通过命名管道使用 Python、Perl 等语言进行脚本编写。 + - 编辑任意采样和多轨时间线。 + - 无障碍功能,包括通过键盘编辑、屏幕阅读器支持和旁白支持。 + - 用于信号(包括音频)分析的实用工具。 + Tenacity 在音频处理方面并没有单一的应用方向。音乐人可以使用 Tenacity 录制真实乐器并制作歌曲,播客制作者可以在 Tenacity 中编辑他们的节目,甚至学术研究人员也可以使用 Tenacity 分析信号。我们并不打算将 Tenacity 专注于音频处理的某一个领域,而是希望它能涵盖广泛的音频处理需求,包括上述各种应用。 +Tags: +- 编辑器 +- 音频 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://tenacityaudio.org/docs/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/t/TenacityTeam/Tenacity/1.3.5/TenacityTeam.Tenacity.yaml b/manifests/t/TenacityTeam/Tenacity/1.3.5/TenacityTeam.Tenacity.yaml new file mode 100644 index 000000000000..3d3b46cbb028 --- /dev/null +++ b/manifests/t/TenacityTeam/Tenacity/1.3.5/TenacityTeam.Tenacity.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: TenacityTeam.Tenacity +PackageVersion: 1.3.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/t/TragicCode/BuslyCLI/0.64.18/TragicCode.BuslyCLI.installer.yaml b/manifests/t/TragicCode/BuslyCLI/0.64.18/TragicCode.BuslyCLI.installer.yaml new file mode 100644 index 000000000000..a91f1138b43c --- /dev/null +++ b/manifests/t/TragicCode/BuslyCLI/0.64.18/TragicCode.BuslyCLI.installer.yaml @@ -0,0 +1,17 @@ +# Created with WinGet Updater using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: TragicCode.BuslyCLI +PackageVersion: 0.64.18 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: busly.exe +ReleaseDate: 2026-07-14 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/TraGicCode/busly-cli/releases/download/v0.64.18/busly-cli-v0.64.18-win-x64.zip + InstallerSha256: EB7D18BE5D59ECB51255CC7745229EE09936265331CF30C02854DD45E9FA3A74 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/t/TragicCode/BuslyCLI/0.64.18/TragicCode.BuslyCLI.locale.en-US.yaml b/manifests/t/TragicCode/BuslyCLI/0.64.18/TragicCode.BuslyCLI.locale.en-US.yaml new file mode 100644 index 000000000000..5f93772077a3 --- /dev/null +++ b/manifests/t/TragicCode/BuslyCLI/0.64.18/TragicCode.BuslyCLI.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created with WinGet Updater using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: TragicCode.BuslyCLI +PackageVersion: 0.64.18 +PackageLocale: en-US +Publisher: TragicCode +PublisherUrl: https://github.com/TraGicCode +PublisherSupportUrl: https://github.com/TraGicCode/busly-cli/issues +PackageName: Busly CLI +PackageUrl: https://github.com/TraGicCode/busly-cli +License: Apache-2.0 +LicenseUrl: https://github.com/TraGicCode/busly-cli/blob/HEAD/LICENSE +ShortDescription: The Unofficial CLI for NServiceBus +Tags: +- nservicebus +ReleaseNotes: |- + Changelog + All notable changes to this project will be documented in this file. + The format is based on Keep a Changelog and this project adheres to Semantic Versioning. + v0.64.18 - 2026-07-14 + Full Changelog + Fixed + - Bump js-yaml from 3.14.2 to 3.15.0 in /website #443 (dependabot) + - Bump NServiceBus.Transport.AzureServiceBus from 6.4.1 to 6.4.2 #442 (dependabot) + - Bump Microsoft.NET.Test.Sdk from 18.7.0 to 18.8.0 #441 (dependabot) + - Bump actions/setup-node from 6 to 7 #440 (dependabot) +ReleaseNotesUrl: https://github.com/TraGicCode/busly-cli/releases/tag/v0.64.18 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/t/TragicCode/BuslyCLI/0.64.18/TragicCode.BuslyCLI.yaml b/manifests/t/TragicCode/BuslyCLI/0.64.18/TragicCode.BuslyCLI.yaml new file mode 100644 index 000000000000..89b4c31a03b7 --- /dev/null +++ b/manifests/t/TragicCode/BuslyCLI/0.64.18/TragicCode.BuslyCLI.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Updater using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: TragicCode.BuslyCLI +PackageVersion: 0.64.18 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/t/TragicCode/BuslyCLI/0.64.19/TragicCode.BuslyCLI.installer.yaml b/manifests/t/TragicCode/BuslyCLI/0.64.19/TragicCode.BuslyCLI.installer.yaml new file mode 100644 index 000000000000..d7d7693bbe66 --- /dev/null +++ b/manifests/t/TragicCode/BuslyCLI/0.64.19/TragicCode.BuslyCLI.installer.yaml @@ -0,0 +1,17 @@ +# Created with WinGet Updater using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: TragicCode.BuslyCLI +PackageVersion: 0.64.19 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: busly.exe +ReleaseDate: 2026-07-14 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/TraGicCode/busly-cli/releases/download/v0.64.19/busly-cli-v0.64.19-win-x64.zip + InstallerSha256: 36E35F20F6B4DD5531F09E83256C90DC45784CC7CC959732CC15507E4B6658EF +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/t/TragicCode/BuslyCLI/0.64.19/TragicCode.BuslyCLI.locale.en-US.yaml b/manifests/t/TragicCode/BuslyCLI/0.64.19/TragicCode.BuslyCLI.locale.en-US.yaml new file mode 100644 index 000000000000..84695a9c3c6e --- /dev/null +++ b/manifests/t/TragicCode/BuslyCLI/0.64.19/TragicCode.BuslyCLI.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with WinGet Updater using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: TragicCode.BuslyCLI +PackageVersion: 0.64.19 +PackageLocale: en-US +Publisher: TragicCode +PublisherUrl: https://github.com/TraGicCode +PublisherSupportUrl: https://github.com/TraGicCode/busly-cli/issues +PackageName: Busly CLI +PackageUrl: https://github.com/TraGicCode/busly-cli +License: Apache-2.0 +LicenseUrl: https://github.com/TraGicCode/busly-cli/blob/HEAD/LICENSE +ShortDescription: The Unofficial CLI for NServiceBus +Tags: +- nservicebus +ReleaseNotes: |- + Changelog + All notable changes to this project will be documented in this file. + The format is based on Keep a Changelog and this project adheres to Semantic Versioning. + v0.64.19 - 2026-07-14 + Full Changelog + Fixed + - Bug/fix docker build not getting directory packages props #446 (TraGicCode) +ReleaseNotesUrl: https://github.com/TraGicCode/busly-cli/releases/tag/v0.64.19 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/t/TragicCode/BuslyCLI/0.64.19/TragicCode.BuslyCLI.yaml b/manifests/t/TragicCode/BuslyCLI/0.64.19/TragicCode.BuslyCLI.yaml new file mode 100644 index 000000000000..bae16fb07436 --- /dev/null +++ b/manifests/t/TragicCode/BuslyCLI/0.64.19/TragicCode.BuslyCLI.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Updater using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: TragicCode.BuslyCLI +PackageVersion: 0.64.19 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/u/Ubiquiti/IdentityDesktop/Endpoint/3.7.4/Ubiquiti.IdentityDesktop.Endpoint.installer.yaml b/manifests/u/Ubiquiti/IdentityDesktop/Endpoint/3.7.4/Ubiquiti.IdentityDesktop.Endpoint.installer.yaml new file mode 100644 index 000000000000..25dd4e75c6cd --- /dev/null +++ b/manifests/u/Ubiquiti/IdentityDesktop/Endpoint/3.7.4/Ubiquiti.IdentityDesktop.Endpoint.installer.yaml @@ -0,0 +1,25 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Ubiquiti.IdentityDesktop.Endpoint +PackageVersion: 3.7.4 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.10240.0 +InstallerType: wix +Scope: machine +ProductCode: '{AD2ABE76-DB23-4045-B9C3-55EC6CE9E357}' +ReleaseDate: 2026-07-14 +AppsAndFeaturesEntries: +- DisplayName: UniFi Endpoint + DisplayVersion: 3.7.4.308 + ProductCode: '{AD2ABE76-DB23-4045-B9C3-55EC6CE9E357}' + UpgradeCode: '{824BAD86-C56C-4D5F-9697-95BA4A8BE9F4}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%/UniFi Identity Standard/utunnel' +Installers: +- Architecture: x64 + InstallerUrl: https://fw-download.ubnt.com/data/uid-identity-standard-desktop-app-msi/af0d-windows-3.7.4-ad0cdf6a-ea64-4bfb-a6c5-c6edf532ffde.msi + InstallerSha256: 5417B178A830B21E23FC96EE73A72A6A070038F56E073ECFDD25B30509B029FA +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/u/Ubiquiti/IdentityDesktop/Endpoint/3.7.4/Ubiquiti.IdentityDesktop.Endpoint.locale.en-US.yaml b/manifests/u/Ubiquiti/IdentityDesktop/Endpoint/3.7.4/Ubiquiti.IdentityDesktop.Endpoint.locale.en-US.yaml new file mode 100644 index 000000000000..557332155dba --- /dev/null +++ b/manifests/u/Ubiquiti/IdentityDesktop/Endpoint/3.7.4/Ubiquiti.IdentityDesktop.Endpoint.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Ubiquiti.IdentityDesktop.Endpoint +PackageVersion: 3.7.4 +PackageLocale: en-US +Publisher: Ubiquiti Inc +PublisherUrl: https://ui.com/ +PrivacyUrl: https://www.ui.com/legal/privacypolicy/ +Author: Ubiquiti Inc. +PackageName: Identity Desktop +PackageUrl: https://ui.com/eu/en/identity +License: Proprietary +LicenseUrl: https://www.ui.com/eula/ +Copyright: Copyright (c) Ubiquiti Inc. All rights reserved. +CopyrightUrl: https://www.ui.com/legal/ +ShortDescription: Identity Desktop is Ubiquiti's free tier Identity application for Windows. +Description: Unifi Identity Desktop is Ubiquiti's new free tier Identity application for Windows. Allowing for One-Click WiFi, One-Click VPN, and more. +Moniker: unifi-identity-desktop +Tags: +- identity +- unifi +- vpn +- wifi +InstallationNotes: Follow the 'Send Invitation Link to User' steps from the 'UniFi Identity Admins’ Guide' in order to configure the application after installation. +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/u/Ubiquiti/IdentityDesktop/Endpoint/3.7.4/Ubiquiti.IdentityDesktop.Endpoint.yaml b/manifests/u/Ubiquiti/IdentityDesktop/Endpoint/3.7.4/Ubiquiti.IdentityDesktop.Endpoint.yaml new file mode 100644 index 000000000000..0cab193c1fd1 --- /dev/null +++ b/manifests/u/Ubiquiti/IdentityDesktop/Endpoint/3.7.4/Ubiquiti.IdentityDesktop.Endpoint.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: Ubiquiti.IdentityDesktop.Endpoint +PackageVersion: 3.7.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/u/utkuozdemir/nvidia_gpu_exporter/1.6.0/utkuozdemir.nvidia_gpu_exporter.installer.yaml b/manifests/u/utkuozdemir/nvidia_gpu_exporter/1.6.0/utkuozdemir.nvidia_gpu_exporter.installer.yaml new file mode 100644 index 000000000000..d533414641d0 --- /dev/null +++ b/manifests/u/utkuozdemir/nvidia_gpu_exporter/1.6.0/utkuozdemir.nvidia_gpu_exporter.installer.yaml @@ -0,0 +1,18 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json +PackageIdentifier: utkuozdemir.nvidia_gpu_exporter +PackageVersion: 1.6.0 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2026-06-27" +Installers: + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: nvidia_gpu_exporter.exe + PortableCommandAlias: nvidia_gpu_exporter + InstallerUrl: https://github.com/utkuozdemir/nvidia_gpu_exporter/releases/download/v1.6.0/nvidia_gpu_exporter_1.6.0_windows_x86_64.zip + InstallerSha256: b68bd8564582dd6c0b680df37619639036005a7c79732833aae1393e54994cef + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/u/utkuozdemir/nvidia_gpu_exporter/1.6.0/utkuozdemir.nvidia_gpu_exporter.locale.en-US.yaml b/manifests/u/utkuozdemir/nvidia_gpu_exporter/1.6.0/utkuozdemir.nvidia_gpu_exporter.locale.en-US.yaml new file mode 100644 index 000000000000..ef53acf59772 --- /dev/null +++ b/manifests/u/utkuozdemir/nvidia_gpu_exporter/1.6.0/utkuozdemir.nvidia_gpu_exporter.locale.en-US.yaml @@ -0,0 +1,39 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json +PackageIdentifier: utkuozdemir.nvidia_gpu_exporter +PackageVersion: 1.6.0 +PackageLocale: en-US +Publisher: utkuozdemir +PublisherUrl: https://github.com/utkuozdemir +PublisherSupportUrl: https://github.com/utkuozdemir/nvidia_gpu_exporter/issues +PackageName: Nvidia GPU Exporter +PackageUrl: https://github.com/utkuozdemir/nvidia_gpu_exporter +License: MIT +LicenseUrl: https://github.com/utkuozdemir/nvidia_gpu_exporter/blob/main/LICENSE +ShortDescription: Nvidia GPU exporter for prometheus using nvidia-smi binary +Description: Nvidia GPU exporter for prometheus, using the nvidia-smi binary to collect, parse and export GPU metrics. Supports running as a native Windows service. +Moniker: nvidia_gpu_exporter +Tags: + - prometheus + - nvidia + - gpu + - exporter + - monitoring +ReleaseNotes: | + ## Changelog + ### New Features + * a59e78064ae6780589bc09b900646a7fccbde135 feat: add native Windows service support + * b0fb0c51b8031543462430b5c4b4f024a5c1a7fc feat: publish to winget + ### Refactors & Internal Changes + * d3d7de3a568bf589a3f51eb312cbb0eeac580e0a refactor: stop re-parsing nvidia-smi values into capture headers + * bfbdc16514a0ad668a90e7a6bb8b0701ad9f7f05 refactor: update tag message format in Taskfile.yml + ### Dependency Updates + * 5829be9187af95201a9ac70fb8328401e50ad90d chore(deps): update github actions (#411) + ### Build, CI & Chores + * c31bbde4909130cd8de12b1437225205f3fc9c9f ci: harden workflows and fix renovate go version updates (#409) + * 9d44a0ee31b80b14677f42c9904a623b7149edf8 test: add linux rtx 4080 super capture for driver 595.71.05 + * 64bdcd839d32b12b013b2f74762ac16054f0b4d6 test: add windows gpu capture and support windows in collect.sh (#410) + * a2db70dcb520457f142cd7af73c9b495d20112c2 test: add windows rtx 2080 super capture for driver 610.62 + * 6ecabf44777ce1d1bffe17e111d28d01de3aefa7 test: recapture linux rtx 2080 super with genuine idle baseline +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/u/utkuozdemir/nvidia_gpu_exporter/1.6.0/utkuozdemir.nvidia_gpu_exporter.yaml b/manifests/u/utkuozdemir/nvidia_gpu_exporter/1.6.0/utkuozdemir.nvidia_gpu_exporter.yaml new file mode 100644 index 000000000000..3ab4faed87a3 --- /dev/null +++ b/manifests/u/utkuozdemir/nvidia_gpu_exporter/1.6.0/utkuozdemir.nvidia_gpu_exporter.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json +PackageIdentifier: utkuozdemir.nvidia_gpu_exporter +PackageVersion: 1.6.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/v/voidtools/Everything/Beta/1.5.0.1416b/voidtools.Everything.Beta.installer.yaml b/manifests/v/voidtools/Everything/Beta/1.5.0.1416b/voidtools.Everything.Beta.installer.yaml new file mode 100644 index 000000000000..00f137d50edc --- /dev/null +++ b/manifests/v/voidtools/Everything/Beta/1.5.0.1416b/voidtools.Everything.Beta.installer.yaml @@ -0,0 +1,44 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: voidtools.Everything.Beta +PackageVersion: 1.5.0.1416b +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /S +UpgradeBehavior: install +FileExtensions: +- efu +ReleaseDate: 2026-07-02 +Installers: +- Architecture: x86 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: Everything.exe + PortableCommandAlias: everything + InstallerUrl: https://www.voidtools.com/Everything-1.5.0.1416b.x86.zip + InstallerSha256: E1590E8757C7D0E526183CFD50BBE5919C6D1F64534BEB63C2161821B79B7CD3 +- Architecture: x86 + InstallerType: nullsoft + Scope: machine + InstallerUrl: https://www.voidtools.com/Everything-1.5.0.1416b.x86-Setup.exe + InstallerSha256: BF1CB13A43A7F2CA9E546F4D5010E9CC726E1A132B87E09976F6BB638B03A3A4 +- Architecture: x64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: Everything.exe + PortableCommandAlias: everything + InstallerUrl: https://www.voidtools.com/Everything-1.5.0.1416b.x64.zip + InstallerSha256: CC73C08C3F5C22140B93DF1FB5A0CE9CEE7664A1CF50150FD70C89C2AA084B34 +- Architecture: x64 + InstallerType: nullsoft + Scope: machine + InstallerUrl: https://www.voidtools.com/Everything-1.5.0.1416b.x64-Setup.exe + InstallerSha256: 25A896740360DFF86815B09CBA9E5C74AC0EEC96ABCE81AD99828B77A86E921D +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/v/voidtools/Everything/Beta/1.5.0.1416b/voidtools.Everything.Beta.locale.en-US.yaml b/manifests/v/voidtools/Everything/Beta/1.5.0.1416b/voidtools.Everything.Beta.locale.en-US.yaml new file mode 100644 index 000000000000..99c1d86ae879 --- /dev/null +++ b/manifests/v/voidtools/Everything/Beta/1.5.0.1416b/voidtools.Everything.Beta.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: voidtools.Everything.Beta +PackageVersion: 1.5.0.1416b +PackageLocale: en-US +Publisher: voidtools +PublisherUrl: https://www.voidtools.com/ +PublisherSupportUrl: https://www.voidtools.com/support/everything/ +PrivacyUrl: https://www.voidtools.com/privacy +Author: David Carpenter +PackageName: Everything (Beta) +PackageUrl: https://www.voidtools.com/forum/viewtopic.php?f=12&t=9787 +License: MIT +LicenseUrl: https://www.voidtools.com/License.txt +Copyright: Copyright (C) 2018 David Carpenter +CopyrightUrl: https://www.voidtools.com/License.txt +ShortDescription: Locate files and folders by name instantly. +Description: | + Everything is search engine that locates files and folders by filename instantly for Windows. + Unlike Windows search Everything initially displays every file and folder on your computer (hence the name Everything). You type in a search filter to limit what files and folders are displayed. +Moniker: everything-beta +Tags: +- beta +- directory +- etpserver +- file +- file-search +- filesearch +- filesystem +- find +- folder +- ftpserver +- httpserver +- indexing +- search +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/v/voidtools/Everything/Beta/1.5.0.1416b/voidtools.Everything.Beta.yaml b/manifests/v/voidtools/Everything/Beta/1.5.0.1416b/voidtools.Everything.Beta.yaml new file mode 100644 index 000000000000..e83842eeb83b --- /dev/null +++ b/manifests/v/voidtools/Everything/Beta/1.5.0.1416b/voidtools.Everything.Beta.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: voidtools.Everything.Beta +PackageVersion: 1.5.0.1416b +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/w/WXRIW/Lyricify/4.3.52/WXRIW.Lyricify.installer.yaml b/manifests/w/WXRIW/Lyricify/4.3.52/WXRIW.Lyricify.installer.yaml new file mode 100644 index 000000000000..fcf0c5e4d057 --- /dev/null +++ b/manifests/w/WXRIW/Lyricify/4.3.52/WXRIW.Lyricify.installer.yaml @@ -0,0 +1,79 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: WXRIW.Lyricify +PackageVersion: 4.3.52 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /exenoui /quiet /norestart + SilentWithProgress: /exenoui /passive /norestart + InstallLocation: APPDIR="" + Log: /log "" +ExpectedReturnCodes: +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish +- InstallerReturnCode: 1654 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 1650 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1649 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1644 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1643 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1640 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated +- InstallerReturnCode: 1639 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1638 + ReturnResponse: alreadyInstalled +- InstallerReturnCode: 1633 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 1628 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1625 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1623 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress +- InstallerReturnCode: 1602 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 1601 + ReturnResponse: contactSupport +- InstallerReturnCode: 87 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1 + ReturnResponse: invalidParameter +- InstallerReturnCode: -1 + ReturnResponse: cancelledByUser +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.6 +ReleaseDate: 2026-07-14 +AppsAndFeaturesEntries: +- UpgradeCode: '{CA8FC4DE-6BEC-4C25-BD21-AD316980A6EF}' + InstallerType: msi +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/WXRIW/Lyricify-App/releases/download/v4.3.52/Lyricify.Setup.Ver.4.3.52.260715-release.x86.exe + InstallerSha256: C508F6C59BC5C8EFC92EB1B2E0B000CD06A26AFCEBC852185753A3E1B9A32209 + ProductCode: '{2FB0586B-F42A-4CA8-AE6A-7140C5CCA862}' +- Architecture: x64 + InstallerUrl: https://github.com/WXRIW/Lyricify-App/releases/download/v4.3.52/Lyricify.Setup.Ver.4.3.52.260715-release.x64.exe + InstallerSha256: 40A2112AEE7E0B26144F01A9E263E03B5F469DCF2932463120B1BB45BB3DC7B2 + ProductCode: '{39631AB1-D08D-4B1F-BD95-880B8A13C2C0}' +- Architecture: arm64 + InstallerUrl: https://github.com/WXRIW/Lyricify-App/releases/download/v4.3.52/Lyricify.Setup.Ver.4.3.52.260715-release.Arm64.exe + InstallerSha256: F51DD32340E94F0FF93EE33544782F92CAA1C6D3CD153FB8DE4834596505F213 + ProductCode: '{2E1D949D-EFEB-4F09-9A33-701389F01687}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/w/WXRIW/Lyricify/4.3.52/WXRIW.Lyricify.locale.en-US.yaml b/manifests/w/WXRIW/Lyricify/4.3.52/WXRIW.Lyricify.locale.en-US.yaml new file mode 100644 index 000000000000..a9d5e43e676f --- /dev/null +++ b/manifests/w/WXRIW/Lyricify/4.3.52/WXRIW.Lyricify.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: WXRIW.Lyricify +PackageVersion: 4.3.52 +PackageLocale: en-US +Publisher: WXRIW +PublisherUrl: https://github.com/WXRIW +PublisherSupportUrl: https://github.com/WXRIW/Lyricify-App/issues +PackageName: Lyricify +PackageUrl: https://lyricify.app/ +License: Freeware +Copyright: Copyright © 2026 WXRIW +ShortDescription: A fantastic app to provide scroll lyrics for Spotify and other apps +Tags: +- lyrics +- music +- spotify +ReleaseNotes: |- + 1. [Fix] Optimize Taskbar Lyrics loading. + 2. [Fix] Apple Music Lyrics animation stutter after track change. + 3. [Fix] Optimize the Taskbar Lyrics logo size when small taskbar buttons are enabled. + 4. [Fix] Apple Music Lyrics being clipped when scaled. + 5. [Fix] Handle Spotify refresh token expiration. + 6. [Fix] Romaji display in Taskbar Lyrics. + 7. [Fix] QRC decryption issue in some cases. +ReleaseNotesUrl: https://github.com/WXRIW/Lyricify-App/releases/tag/v4.3.52 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/w/WXRIW/Lyricify/4.3.52/WXRIW.Lyricify.locale.zh-CN.yaml b/manifests/w/WXRIW/Lyricify/4.3.52/WXRIW.Lyricify.locale.zh-CN.yaml new file mode 100644 index 000000000000..2001e191b9bc --- /dev/null +++ b/manifests/w/WXRIW/Lyricify/4.3.52/WXRIW.Lyricify.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: WXRIW.Lyricify +PackageVersion: 4.3.52 +PackageLocale: zh-CN +License: 免费软件 +Copyright: 版权所有 © 2026 WXRIW +ShortDescription: 一款为 Spotify 等各种应用提供滚动歌词的软件 +Tags: +- spotify +- 歌词 +- 音乐 +ReleaseNotes: |- + 1. 优化任务栏歌词加载。 + 2. 修复 Apple Music 歌词切歌后动画卡顿的问题。 + 3. 优化启用小任务栏按钮时任务栏歌词 Logo 大小。 + 4. 修复 Apple Music 歌词缩放时被裁切。 + 5. 处理 Spotify Refresh Token 六个月强制过期的问题。 + 6. 修复任务栏歌词中的罗马音显示。 + 7. 修复部分情况下 QRC 解密问题。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/w/WXRIW/Lyricify/4.3.52/WXRIW.Lyricify.yaml b/manifests/w/WXRIW/Lyricify/4.3.52/WXRIW.Lyricify.yaml new file mode 100644 index 000000000000..4198e88d888b --- /dev/null +++ b/manifests/w/WXRIW/Lyricify/4.3.52/WXRIW.Lyricify.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: WXRIW.Lyricify +PackageVersion: 4.3.52 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/w/WXRIW/Lyricify/Lite/1.2.5/WXRIW.Lyricify.Lite.installer.yaml b/manifests/w/WXRIW/Lyricify/Lite/1.2.5/WXRIW.Lyricify.Lite.installer.yaml new file mode 100644 index 000000000000..b5abd399d538 --- /dev/null +++ b/manifests/w/WXRIW/Lyricify/Lite/1.2.5/WXRIW.Lyricify.Lite.installer.yaml @@ -0,0 +1,79 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: WXRIW.Lyricify.Lite +PackageVersion: 1.2.5 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /exenoui /quiet /norestart + SilentWithProgress: /exenoui /passive /norestart + InstallLocation: APPDIR="" + Log: /log "" +ExpectedReturnCodes: +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish +- InstallerReturnCode: 1654 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 1650 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1649 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1644 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1643 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1640 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated +- InstallerReturnCode: 1639 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1638 + ReturnResponse: alreadyInstalled +- InstallerReturnCode: 1633 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 1628 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1625 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1623 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress +- InstallerReturnCode: 1602 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 1601 + ReturnResponse: contactSupport +- InstallerReturnCode: 87 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1 + ReturnResponse: invalidParameter +- InstallerReturnCode: -1 + ReturnResponse: cancelledByUser +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.8 +ReleaseDate: 2026-07-14 +AppsAndFeaturesEntries: +- UpgradeCode: '{CE507D23-ADD8-4A46-BD74-4A30BC85FED9}' + InstallerType: msi +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/WXRIW/Lyricify-App/releases/download/lite-v1.2.5/Lyricify.Lite.Setup.Ver.1.2.5.260715-release.x86.exe + InstallerSha256: A377DC0BB6DD1BD5E5EE2BBD5BE191218C6891FE1FDB8B0FBB1CC392F7860570 + ProductCode: '{A2EB501F-927B-4FCC-9A82-5B671DCEA444}' +- Architecture: x64 + InstallerUrl: https://github.com/WXRIW/Lyricify-App/releases/download/lite-v1.2.5/Lyricify.Lite.Setup.Ver.1.2.5.260715-release.x64.exe + InstallerSha256: E02E77B26F34D3D7C9D456C2EAE0D62ED5986F2E3068C061B274135AB309860A + ProductCode: '{E9A31849-25FE-4A4C-9355-E95356DB7F75}' +- Architecture: arm64 + InstallerUrl: https://github.com/WXRIW/Lyricify-App/releases/download/lite-v1.2.5/Lyricify.Lite.Setup.Ver.1.2.5.260715-release.Arm64.exe + InstallerSha256: F14CBC77F4C4441DF0B6A095ADC395A53CECF3129F3BFD5C2F624A7BD9F3C3F7 + ProductCode: '{F56F1FFD-103F-4228-8919-23F9C3DB953F}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/w/WXRIW/Lyricify/Lite/1.2.5/WXRIW.Lyricify.Lite.locale.en-US.yaml b/manifests/w/WXRIW/Lyricify/Lite/1.2.5/WXRIW.Lyricify.Lite.locale.en-US.yaml new file mode 100644 index 000000000000..164cc6f5c77c --- /dev/null +++ b/manifests/w/WXRIW/Lyricify/Lite/1.2.5/WXRIW.Lyricify.Lite.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: WXRIW.Lyricify.Lite +PackageVersion: 1.2.5 +PackageLocale: en-US +Publisher: WXRIW +PublisherUrl: https://github.com/WXRIW +PublisherSupportUrl: https://github.com/WXRIW/Lyricify-App/issues +PackageName: Lyricify Lite +PackageUrl: https://lyricify.app/ +License: Freeware +Copyright: Copyright © 2026 WXRIW +ShortDescription: A fantastic app to provide scroll lyrics for Spotify and other apps +Tags: +- apple-music +- lyrics +- music +- netease-cloudmusic +- qq-music +- spotify +ReleaseNotes: |- + 1. [Fix] Optimize the Taskbar Lyrics logo size when small taskbar buttons are enabled. + 2. [Fix] Apple Music Lyrics being clipped when scaled. + 3. [Add] Discord RPC support. + 4. [Fix] Improve SMTC compatibility with QQ Music UWP. + 5. [Fix] Romaji display in Taskbar Lyrics. + 6. [Fix] QQ Music word-by-word lyrics fallback to line-synced lyrics and QRC decryption issue in some cases. +ReleaseNotesUrl: https://github.com/WXRIW/Lyricify-App/releases/tag/lite-v1.2.5 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/w/WXRIW/Lyricify/Lite/1.2.5/WXRIW.Lyricify.Lite.locale.zh-CN.yaml b/manifests/w/WXRIW/Lyricify/Lite/1.2.5/WXRIW.Lyricify.Lite.locale.zh-CN.yaml new file mode 100644 index 000000000000..cd0a566ce49b --- /dev/null +++ b/manifests/w/WXRIW/Lyricify/Lite/1.2.5/WXRIW.Lyricify.Lite.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: WXRIW.Lyricify.Lite +PackageVersion: 1.2.5 +PackageLocale: zh-CN +License: 免费软件 +Copyright: 版权所有 © 2026 WXRIW +ShortDescription: 一款为 Spotify 等各种应用提供滚动歌词的软件 +Tags: +- apple-music +- qq音乐 +- spotify +- 歌词 +- 网易云音乐 +- 音乐 +ReleaseNotes: |- + 1. 优化启用小任务栏按钮时任务栏歌词 Logo 大小。 + 2. 修复 Apple Music 歌词在缩放时被裁切的问题。 + 3. 添加 Discord RPC 支持。 + 4. 改进 QQ 音乐 UWP 的 SMTC 兼容性。 + 5. 修复任务栏歌词中的罗马音显示。 + 6. 修复 QQ 音乐逐字歌词回落至逐行歌词以及部分情况下的 QRC 解密问题。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/w/WXRIW/Lyricify/Lite/1.2.5/WXRIW.Lyricify.Lite.yaml b/manifests/w/WXRIW/Lyricify/Lite/1.2.5/WXRIW.Lyricify.Lite.yaml new file mode 100644 index 000000000000..411edba3f711 --- /dev/null +++ b/manifests/w/WXRIW/Lyricify/Lite/1.2.5/WXRIW.Lyricify.Lite.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: WXRIW.Lyricify.Lite +PackageVersion: 1.2.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/x/XinTaoFei/Codeg/0.20.3/XinTaoFei.Codeg.installer.yaml b/manifests/x/XinTaoFei/Codeg/0.20.3/XinTaoFei.Codeg.installer.yaml new file mode 100644 index 000000000000..9d2076074922 --- /dev/null +++ b/manifests/x/XinTaoFei/Codeg/0.20.3/XinTaoFei.Codeg.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: XinTaoFei.Codeg +PackageVersion: 0.20.3 +InstallerType: nullsoft +Scope: user +UpgradeBehavior: install +ProductCode: codeg +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/xintaofei/codeg/releases/download/v0.20.3/codeg_0.20.3_x64-setup.exe + InstallerSha256: 999B6868758C7090D1A9A3CB5C72F683D2F6DB02D5D73998F1768F343B8B91F6 +- Architecture: arm64 + InstallerUrl: https://github.com/xintaofei/codeg/releases/download/v0.20.3/codeg_0.20.3_arm64-setup.exe + InstallerSha256: DA8386C87A5CBA975022DE74122687446547AAFBA3633A085962D44F09F07C42 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/x/XinTaoFei/Codeg/0.20.3/XinTaoFei.Codeg.locale.en-US.yaml b/manifests/x/XinTaoFei/Codeg/0.20.3/XinTaoFei.Codeg.locale.en-US.yaml new file mode 100644 index 000000000000..873078e5180e --- /dev/null +++ b/manifests/x/XinTaoFei/Codeg/0.20.3/XinTaoFei.Codeg.locale.en-US.yaml @@ -0,0 +1,44 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: XinTaoFei.Codeg +PackageVersion: 0.20.3 +PackageLocale: en-US +Publisher: codeg +PublisherUrl: https://github.com/xintaofei +PublisherSupportUrl: https://github.com/xintaofei/codeg/issues +PackageName: codeg +PackageUrl: https://github.com/xintaofei/codeg +License: Apache-2.0 +LicenseUrl: https://github.com/xintaofei/codeg/blob/HEAD/LICENSE +ShortDescription: Aggregate and browse AI coding agent sessions (Claude Code, Codex, Gemini CLI, etc.) in one place. Desktop app, self-hosted server, or Docker. +Description: Codeg (Code Generation) is an enterprise-grade multi-agent coding workspace. It unifies local AI coding agents (Claude Code, Codex CLI, OpenCode, Gemini CLI, OpenClaw, Cline, etc.) in a desktop app, standalone server, or Docker container — enabling remote development from any browser — with conversation aggregation, parallel git worktree development, MCP/Skills management, chat channel interactions (Telegram, Lark, iLink, etc.), and integrated Git/file/terminal workflows. +Tags: +- agent +- agentic +- ai +- chatbot +- claude-code +- code +- codex +- coding +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + - feat(chat-channel): Telegram Topic mode. Run multiple sessions inside one Telegram forum supergroup, each bound to its own topic. /task opens a new topic and session, /resume binds an existing one, and plain text follows up in the current topic. Requires a forum supergroup with the bot as a topic-managing admin. Thanks @AnotiaWang (#322). + - feat(codex): Custom Codex models without hand-editing JSON. A structured editor in Codex settings lets you define custom models and curate the list — clone an official model, override only what differs, pick enum fields from dropdowns. Official models are read live from the launched Codex, so new ones appear automatically. + - feat(grok): Real Grok permission modes and reasoning effort. Permission mode now uses Grok's own --permission-mode values (old settings migrate automatically), and the reasoning-effort selector follows the chosen model — showing only the efforts it supports, or hiding entirely when it has none. + - feat(skills): Author your own skills. A new Custom tab in Skill Packs lets you create, edit, duplicate, and delete skills in the shared store and enable them for any agent — write once, reuse everywhere. Import from a local folder or from an agent's existing global skills. + - fix(chat): Async sub-agent results settle cleanly into their turn. Held-turn content no longer double-renders, the launch card updates in place to its finished result, and the "syncing results" strip stops lingering. + - fix(chat): Correct first-reply stats after resuming a conversation. The first reply after reopening a conversation no longer absorbs every earlier turn's duration and tokens — each reply reports only its own. + - fix(acp): A session's last error survives a reconnect. Reconnecting after missing the live error event still shows what went wrong, and a stale error is never resurrected onto a session that moved on. Thanks @ijry (#314). + - fix(chat-channel): Telegram tokens no longer leak; @username channels bind correctly. Bot tokens are scrubbed from error messages, and an @username is resolved to its numeric chat id so a follow-up no longer spawns a duplicate agent. + - fix(session): Completed sessions show their true runtime, computed from start and end timestamps. Thanks @cnYui (#311). + - fix(editor): Windows IME composition is preserved when typing Chinese, Japanese, or Korean in the built-in editor. Thanks @youxikexue (#332). + - fix(docker): Docker builds include the pnpm workspace config, so container and self-hosted deployments build cleanly. Thanks @AnotiaWang (#322). + - chore(agents): Bundled agents refreshed — Claude Code (0.59.0), OpenCode (1.17.20), OpenClaw (2026.7.1), Cline (3.0.40), CodeBuddy (2.121.2), Kimi Code (0.24.1), Grok (0.2.101). +ReleaseNotesUrl: https://github.com/xintaofei/codeg/releases/tag/v0.20.3 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/x/XinTaoFei/Codeg/0.20.3/XinTaoFei.Codeg.locale.zh-CN.yaml b/manifests/x/XinTaoFei/Codeg/0.20.3/XinTaoFei.Codeg.locale.zh-CN.yaml new file mode 100644 index 000000000000..672e4ef7b74b --- /dev/null +++ b/manifests/x/XinTaoFei/Codeg/0.20.3/XinTaoFei.Codeg.locale.zh-CN.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: XinTaoFei.Codeg +PackageVersion: 0.20.3 +PackageLocale: zh-CN +ShortDescription: 在一个地方聚合并浏览 AI 编程代理会话(如 Claude Code、Codex、Gemini CLI 等)。支持桌面应用、自建服务器或 Docker 部署。 +Description: Codeg(Code Generation,代码生成)是一款企业级多代理编码工作区。它将本地 AI 编程代理(包括 Claude Code、Codex CLI、OpenCode、Gemini CLI、OpenClaw、Cline 等)统一集成于桌面应用、独立服务器或 Docker 容器中,支持通过任意浏览器进行远程开发;具备对话聚合、并行 Git 工作树开发、MCP/技能管理、聊天频道交互(Telegram、飞书、iLink 等),以及集成的 Git/文件/终端工作流。 +Tags: +- claude-code +- codex +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 智能体 +- 编程 +- 聊天机器人 +- 自主智能 +ReleaseNotes: |- + - 功能(聊天渠道):Telegram 话题模式。 在一个 Telegram 论坛超级群里同时跑多个会话,每个会话绑定各自的话题。/task <描述> 开新话题并启动新会话,/resume 绑定已有会话,纯文本即为当前话题的跟进。需要论坛超级群、并把机器人设为有话题管理权限的管理员。感谢 @AnotiaWang(#322)。 + - 功能(Codex):无需手写 JSON 的 Codex 自定义模型。 Codex 设置里的结构化编辑器让你定义自定义模型、精选列表——克隆官方模型、只覆盖差异字段、枚举字段从下拉选取。官方模型从启动的 Codex 实时读取,新模型会自动出现。 + - 功能(Grok):真实的 Grok 权限模式与推理强度。 权限模式改用 Grok 自己的 --permission-mode 取值(旧设置自动迁移),推理强度选择器跟随所选模型——只显示它支持的强度,无强度调节时则完全隐藏。 + - 功能(技能):创作你自己的技能。 技能包新增「自定义」标签,可在共享库里创建、编辑、复制、删除技能,并为任意智能体启用——一次编写、处处复用。支持从本地文件夹或某个智能体已有的全局技能导入。 + - 修复(聊天):异步子智能体的结果干净地归入所属回合。 回合内容不再重复渲染,启动卡片就地更新为完成结果,「同步结果中」提示条不再残留。 + - 修复(聊天):恢复会话后的首条回复统计正确了。 重开对话后的第一条回复不再吸收之前所有回合的时长与 token,每条回复只报告自己的数据。 + - 修复(会话):会话最近一次错误在重连后保留。 错过实时错误事件、之后重连仍能看到出错原因,且旧错误不会被复活到已经继续下去的会话上。感谢 @ijry(#314)。 + - 修复(聊天渠道):Telegram token 不再泄漏,@username 渠道正确绑定。 机器人 token 会从错误信息中抹除,@username 会解析为数字 chat id,跟进消息不再重复启动智能体。 + - 修复(会话):已完成会话显示真实运行时长, 依据开始与结束时间戳计算。感谢 @cnYui(#311)。 + - 修复(编辑器):保留 Windows 输入法组词, 在内置编辑器中输入中日韩文时不再丢字或错乱。感谢 @youxikexue(#332)。 + - 修复(Docker):Docker 构建包含 pnpm workspace 配置, 容器与自托管部署可正常构建。感谢 @AnotiaWang(#322)。 + - 更新(智能体):内置智能体已刷新 —— Claude Code(0.59.0)、OpenCode(1.17.20)、OpenClaw(2026.7.1)、Cline(3.0.40)、CodeBuddy(2.121.2)、Kimi Code(0.24.1)、Grok(0.2.101)。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/x/XinTaoFei/Codeg/0.20.3/XinTaoFei.Codeg.yaml b/manifests/x/XinTaoFei/Codeg/0.20.3/XinTaoFei.Codeg.yaml new file mode 100644 index 000000000000..c0f9b857890b --- /dev/null +++ b/manifests/x/XinTaoFei/Codeg/0.20.3/XinTaoFei.Codeg.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: XinTaoFei.Codeg +PackageVersion: 0.20.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/y/Yerong/OfficeToolPlus/.validation b/manifests/y/Yerong/OfficeToolPlus/.validation new file mode 100644 index 000000000000..7b042a759e10 --- /dev/null +++ b/manifests/y/Yerong/OfficeToolPlus/.validation @@ -0,0 +1 @@ +{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"fd764451-1723-4e65-a084-05dc1fc5032e","TestPlan":"Validation-Domain","PackagePath":"manifests/y/Yerong/OfficeToolPlus/11.5.7.0","CommitId":"a602e238b6ddd61d7119c64fe8258d7921eeb813"}],"InstallationVerification":{"Executables":[]}} \ No newline at end of file diff --git a/manifests/y/Yerong/OfficeToolPlus/11.5.7.0/Yerong.OfficeToolPlus.installer.yaml b/manifests/y/Yerong/OfficeToolPlus/11.5.7.0/Yerong.OfficeToolPlus.installer.yaml index 07fa4d78caab..95528e09b24e 100644 --- a/manifests/y/Yerong/OfficeToolPlus/11.5.7.0/Yerong.OfficeToolPlus.installer.yaml +++ b/manifests/y/Yerong/OfficeToolPlus/11.5.7.0/Yerong.OfficeToolPlus.installer.yaml @@ -21,10 +21,10 @@ Dependencies: ReleaseDate: 2026-06-10 Installers: - Architecture: x64 - InstallerUrl: https://github.com/YerongAI/Office-Tool/releases/download/v11.5.7.0/Office_Tool_v11.5.7.0_x64.zip + InstallerUrl: https://otp.landian.vip/redirect/download.php?type=normal&arch=x64&version=11.5.7.0 InstallerSha256: CB0FD9DB95D0FFD73C642EB29AC24964E51DC651AC3762AE56F2521BAD8480D8 - Architecture: arm64 - InstallerUrl: https://github.com/YerongAI/Office-Tool/releases/download/v11.5.7.0/Office_Tool_v11.5.7.0_arm64.zip + InstallerUrl: https://otp.landian.vip/redirect/download.php?type=normal&arch=arm64&version=11.5.7.0 InstallerSha256: 65E6184857EDB01365CD42B64F134CC71E29195286CCD615D79D45D99CC34A30 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/y/yetone/Alma/0.0.874/yetone.Alma.installer.yaml b/manifests/y/yetone/Alma/0.0.874/yetone.Alma.installer.yaml new file mode 100644 index 000000000000..d05ddeaa7627 --- /dev/null +++ b/manifests/y/yetone/Alma/0.0.874/yetone.Alma.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: yetone.Alma +PackageVersion: 0.0.874 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 53efb302-dbc3-52a1-8bb5-041beae96976 +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://updates.alma.now/alma-0.0.874-win-x64.exe + InstallerSha256: ED6C92633514C7147ED21EFB6B83DB9BDABD3E9F3F9F66F95D41F1B9709B2084 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://updates.alma.now/alma-0.0.874-win-x64.exe + InstallerSha256: ED6C92633514C7147ED21EFB6B83DB9BDABD3E9F3F9F66F95D41F1B9709B2084 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/y/yetone/Alma/0.0.874/yetone.Alma.locale.en-US.yaml b/manifests/y/yetone/Alma/0.0.874/yetone.Alma.locale.en-US.yaml new file mode 100644 index 000000000000..73e06e6cbafe --- /dev/null +++ b/manifests/y/yetone/Alma/0.0.874/yetone.Alma.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: yetone.Alma +PackageVersion: 0.0.874 +PackageLocale: en-US +Publisher: yetone +PublisherUrl: https://alma.now/ +PackageName: Alma +PackageUrl: https://alma.now/ +License: Freeware +Copyright: © 2026 Alma +ShortDescription: A beautiful desktop application that unifies your AI experience. Seamlessly switch between OpenAI, Anthropic, Google Gemini, and custom providers. +Description: |- + Alma is a Local-First, Memory-First AI Agent app — zero barrier to entry, putting Agent capability in everyone's hands. + Why Alma? + Unified Experience + Instead of switching between ChatGPT, Claude, and other AI interfaces, Alma lets you access all your AI providers from a single application. Switch between models with a single click. + Privacy First + Alma runs entirely on your desktop. Your API keys and conversation history stay on your machine - we don't operate any cloud servers that process your data. + Powerful Features + Beyond basic chat, Alma offers: + - Memory First - The AI remembers important information across conversations + - Tools - File operations, shell commands, web search, and more + - Skills - Extend AI behavior with custom prompts and workflows + - Workspaces - Associate chats with project directories for coding assistance + - MCP - Extend capabilities with third-party integrations + Beautiful Design + A modern, clean interface with customizable themes, keyboard shortcuts, and attention to detail. +Tags: +- agent +- agentic +- ai +- large-language-model +- llm +ReleaseNotes: |- + v0.0.874 + Features + - Generating images now shows a Codex-style animated dot field while you wait. + - Picture-in-Picture: float the in-app browser on top of other windows to keep browsing while you work. + - Upgraded the in-app browser with the full toolset from Codex. + - Preview can now import cookies from Chrome, Edge, or Brave to reuse your existing logins automatically. + - OpenAI-compatible providers now show a viewport-aware model list and support reasoning effort settings. + Bug Fixes + - The Picture-in-Picture window no longer snaps to the primary screen corner; it now positions itself on the correct display. + - Auto-update downloads now respect your configured proxy settings. + - Stopped idle health checks in Feishu from silently consuming ~1,440 OpenAPI calls per day. + Improvements + - Refined the Picture-in-Picture window with native vibrancy effects and a cleaner, content-first layout. +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://alma.now/docs/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/y/yetone/Alma/0.0.874/yetone.Alma.locale.zh-CN.yaml b/manifests/y/yetone/Alma/0.0.874/yetone.Alma.locale.zh-CN.yaml new file mode 100644 index 000000000000..01b3536b1436 --- /dev/null +++ b/manifests/y/yetone/Alma/0.0.874/yetone.Alma.locale.zh-CN.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: yetone.Alma +PackageVersion: 0.0.874 +PackageLocale: zh-CN +License: 免费软件 +ShortDescription: 一款精美的桌面应用程序,可统一您的 AI 体验。无缝切换 OpenAI、Anthropic、Google Gemini 和自定义提供商。 +Description: |- + Alma 是一款以本地为先、记忆为先的 AI Agent 应用——零门槛上手,让每个人都能轻松使用 Agent 功能。 + 为什么选择 Alma? + 统一体验 + 无需在 ChatGPT、Claude 和其他 AI 界面之间来回切换,Alma 让你通过一个应用程序访问所有 AI 服务提供商。只需单击一下即可切换模型。 + 注重隐私 + Alma 完全在你的桌面运行。你的 API 密钥和对话历史都保留在本地设备中——我们不运营任何用于处理你数据的云服务器。 + 强大功能 + 除了基础聊天外,Alma 还提供: + - 记忆优先 —— AI 能在不同对话间记住重要信息 + - 工具 —— 文件操作、shell 命令、网页搜索等 + - 技能 —— 通过自定义提示词和工作流扩展 AI 行为 + - 工作区 —— 将聊天与项目目录关联,辅助编程开发 + - MCP —— 通过第三方集成扩展能力 + 精美设计 + 现代简洁的界面,支持自定义主题、键盘快捷键,并注重每一个细节。 +Tags: +- 人工智能 +- 大语言模型 +- 智能体 +- 自主智能 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://alma.now/docs/zh/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/y/yetone/Alma/0.0.874/yetone.Alma.yaml b/manifests/y/yetone/Alma/0.0.874/yetone.Alma.yaml new file mode 100644 index 000000000000..51a7464ea8e6 --- /dev/null +++ b/manifests/y/yetone/Alma/0.0.874/yetone.Alma.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: yetone.Alma +PackageVersion: 0.0.874 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/y/yetone/NextAITranslator/0.6.22/yetone.NextAITranslator.installer.yaml b/manifests/y/yetone/NextAITranslator/0.6.22/yetone.NextAITranslator.installer.yaml new file mode 100644 index 000000000000..fe4c46f0326d --- /dev/null +++ b/manifests/y/yetone/NextAITranslator/0.6.22/yetone.NextAITranslator.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: yetone.NextAITranslator +PackageVersion: 0.6.22 +InstallerType: nullsoft +Scope: user +UpgradeBehavior: install +ProductCode: NextAI Translator +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/nextai-translator/nextai-translator/releases/download/v0.6.22/NextAI.Translator_0.6.22_x64-setup.exe + InstallerSha256: 6769F4453ABDF3FEF4913872BEDFA4CECE36C4629E7C9CA84FD93FDBDB7F1D54 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/y/yetone/NextAITranslator/0.6.22/yetone.NextAITranslator.locale.en-US.yaml b/manifests/y/yetone/NextAITranslator/0.6.22/yetone.NextAITranslator.locale.en-US.yaml new file mode 100644 index 000000000000..c1d70f699356 --- /dev/null +++ b/manifests/y/yetone/NextAITranslator/0.6.22/yetone.NextAITranslator.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: yetone.NextAITranslator +PackageVersion: 0.6.22 +PackageLocale: en-US +Publisher: yetone +PublisherUrl: https://github.com/nextai-translator +PublisherSupportUrl: https://github.com/nextai-translator/nextai-translator/issues +PackageName: NextAI Translator +PackageUrl: https://github.com/nextai-translator/nextai-translator +License: AGPL-3.0 +LicenseUrl: https://github.com/nextai-translator/nextai-translator/blob/HEAD/LICENSE +ShortDescription: Cross-platform desktop application for translation based on ChatGPT API. +Tags: +- chatgpt +- openai +- translate +- translation +- translator +ReleaseNotes: |- + v0.6.22 + - feat: add TeamoRouter as a built-in LLM provider + - i18n: add Korean (ko) translation +ReleaseNotesUrl: https://github.com/nextai-translator/nextai-translator/releases/tag/v0.6.22 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/y/yetone/NextAITranslator/0.6.22/yetone.NextAITranslator.locale.zh-CN.yaml b/manifests/y/yetone/NextAITranslator/0.6.22/yetone.NextAITranslator.locale.zh-CN.yaml new file mode 100644 index 000000000000..9c3ceed92c08 --- /dev/null +++ b/manifests/y/yetone/NextAITranslator/0.6.22/yetone.NextAITranslator.locale.zh-CN.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: yetone.NextAITranslator +PackageVersion: 0.6.22 +PackageLocale: zh-CN +ShortDescription: 基于 ChatGPT API 的划词翻译跨平台桌面端应用 +Tags: +- chatgpt +- openai +- 翻译 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/y/yetone/NextAITranslator/0.6.22/yetone.NextAITranslator.yaml b/manifests/y/yetone/NextAITranslator/0.6.22/yetone.NextAITranslator.yaml new file mode 100644 index 000000000000..b5b2810cb3ac --- /dev/null +++ b/manifests/y/yetone/NextAITranslator/0.6.22/yetone.NextAITranslator.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: yetone.NextAITranslator +PackageVersion: 0.6.22 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/z/zhukunpenglinyutong/CCGUI/0.7.2/zhukunpenglinyutong.CCGUI.installer.yaml b/manifests/z/zhukunpenglinyutong/CCGUI/0.7.2/zhukunpenglinyutong.CCGUI.installer.yaml new file mode 100644 index 000000000000..7119944fbfbf --- /dev/null +++ b/manifests/z/zhukunpenglinyutong/CCGUI/0.7.2/zhukunpenglinyutong.CCGUI.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: zhukunpenglinyutong.CCGUI +PackageVersion: 0.7.2 +InstallerType: nullsoft +Scope: user +UpgradeBehavior: install +ProductCode: ccgui +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/zhukunpenglinyutong/desktop-cc-gui/releases/download/v0.7.2/ccgui_0.7.2_x64-setup.exe + InstallerSha256: D4B0463854BFD65F40143B01C63B8FE9975038A900677342E99710692CBE68FA +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/z/zhukunpenglinyutong/CCGUI/0.7.2/zhukunpenglinyutong.CCGUI.locale.en-US.yaml b/manifests/z/zhukunpenglinyutong/CCGUI/0.7.2/zhukunpenglinyutong.CCGUI.locale.en-US.yaml new file mode 100644 index 000000000000..3c61370d49b0 --- /dev/null +++ b/manifests/z/zhukunpenglinyutong/CCGUI/0.7.2/zhukunpenglinyutong.CCGUI.locale.en-US.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: zhukunpenglinyutong.CCGUI +PackageVersion: 0.7.2 +PackageLocale: en-US +ShortDescription: CC GUI Client (Vibe Coding Platform Designed for Developers) +Description: CC GUI targets professional developers, serving as a replacement for Cursor. Focusing on developer experience, our ultimate goal is to build a 100% open-source and transparent next-generation Vibe Coding editor (supporting engines such as Claude Code, Codex, etc.) +Tags: +- ai +- claude-code +- code +- coding +- large-language-model +- llm +- programming +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/z/zhukunpenglinyutong/CCGUI/0.7.2/zhukunpenglinyutong.CCGUI.locale.zh-CN.yaml b/manifests/z/zhukunpenglinyutong/CCGUI/0.7.2/zhukunpenglinyutong.CCGUI.locale.zh-CN.yaml new file mode 100644 index 000000000000..3f62537be3c9 --- /dev/null +++ b/manifests/z/zhukunpenglinyutong/CCGUI/0.7.2/zhukunpenglinyutong.CCGUI.locale.zh-CN.yaml @@ -0,0 +1,50 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: zhukunpenglinyutong.CCGUI +PackageVersion: 0.7.2 +PackageLocale: zh-CN +Publisher: zhukunpenglinyutong +PublisherUrl: https://github.com/zhukunpenglinyutong +PublisherSupportUrl: https://github.com/zhukunpenglinyutong/desktop-cc-gui/issues +Author: 朱昆鹏 +PackageName: ccgui +PackageUrl: https://github.com/zhukunpenglinyutong/desktop-cc-gui +License: MIT +LicenseUrl: https://github.com/zhukunpenglinyutong/desktop-cc-gui/blob/HEAD/LICENSE +Copyright: |- + Copyright (c) 2026 Thomas Ricouard + Copyright (c) 2026 zhukunpenglinyutong(朱昆鹏) +ShortDescription: CC GUI 客户端(专为开发者打造的 Vibe Coding 平台) +Description: CC GUI 目标群体是专业开发者,可以替代 Curosr 使用。专注于开发者体验,我们最终目标是打造一个 100% 开源透明的下一代 Vibe Coding 编辑器(支持 Claude Code,Codex 等引擎) +Tags: +- claude-code +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ReleaseNotes: |- + New Features + - add "send to composer" context menu for terminal selection and file paths + - unify scrollbar geometry and style across all scroll containers + - 完成前端资源下载安装闭环 + - 优化全局搜索结果分层 + - reduce idle chrome render cost (behaviour-visible split of #807) + Fixes + - sync package-lock with radix-ui overrides + - keep bottom follow through send-time layout shock + - restore scrollbar thumb color with fallback variable + - 统一幕布钉底收敛与重开回刷时序 + - 补齐新增文件 diff 入口 + - 修复 composer 冷启动状态回环 + - 修复 React 19 ScrollArea ref 回环 + - 修复自动滚底锚点更新回环 + - 延长会话健康检查超时 + - 修复首次启动 React 渲染崩溃 + - 根治首次启动会话行更新回环 + - 根治 Tooltip 启动更新回环 + Performance Improvements + - reduce idle recalc and render cost across chrome +ReleaseNotesUrl: https://github.com/zhukunpenglinyutong/desktop-cc-gui/releases/tag/v0.7.2 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/z/zhukunpenglinyutong/CCGUI/0.7.2/zhukunpenglinyutong.CCGUI.yaml b/manifests/z/zhukunpenglinyutong/CCGUI/0.7.2/zhukunpenglinyutong.CCGUI.yaml new file mode 100644 index 000000000000..a0320502bc4e --- /dev/null +++ b/manifests/z/zhukunpenglinyutong/CCGUI/0.7.2/zhukunpenglinyutong.CCGUI.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: zhukunpenglinyutong.CCGUI +PackageVersion: 0.7.2 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0