diff --git a/Tools/ManualValidationPipeline.ps1 b/Tools/ManualValidationPipeline.ps1 deleted file mode 100644 index 4646ad11be196..0000000000000 --- a/Tools/ManualValidationPipeline.ps1 +++ /dev/null @@ -1,1261 +0,0 @@ -#Copyright 2022-2023 Microsoft Corporation -#Author: Stephen Gillie -#Title: Manual Validation Pipeline v2.56 -#Created: 10/19/2022 -#Updated: 7/10/2023 -#Notes: Utilities to streamline evaluating 3rd party PRs. -#Update log: -#2.54 Filter comments by hashtag from Get-YamlValue. -#2.55 Bugfix Reset-Status with 0 VMs. -#2.56 Update Validate-Package to use Get-YamlValue in params. - -$build = 373 -$appName = 'Manual Validation' -Write-Host "$appName build: $build" -$MainFolder = 'C:\ManVal' -#Share this folder with Windows File Sharing, then access it from within the VM across the network, as \\LaptopIPAddress\SharedFolder. For LaptopIPAddress use Ethernet adapter vEthernet (Default Switch) IPv4 Address. -Set-Location $MainFolder - -$ipconfig = (ipconfig) -$remoteIP = ([ipaddress](($ipconfig[($ipconfig | Select-String 'vEthernet').LineNumber..$ipconfig.length] | Select-String 'IPv4 Address') -split ': ')[1]).IPAddressToString -$RemoteMainFolder = "//$remoteIP/" -$SharedFolder = "$RemoteMainFolder/write" - -$imagesFolder = "$MainFolder\Images" #VM Images folder -$runPath = "$MainFolder\vm\" #VM working folder -$writeFolder = "$MainFolder\write" #Folder with write permissions -$vmCounter = "$MainFolder\vmcounter.txt" -$VMversion = "$MainFolder\VMversion.txt" -$StatusFile = "$writeFolder\status.csv" - -$CheckpointName = 'Validation' -$VMUserName = 'user' #Set to the internal username you're using in your VMs. -$SandboxUserName = 'WDAGUtilityAccount' #Set to the internal username used in your Sandbox. -$PCUserName = $VMUserName #((whoami) -split "\\")[1]; #Set to your username, or use the commented "whoami" section to autodetect. - -#Package validation -Function Validate-Package { - param( - #[Parameter(mandatory=$true)] - $out = ((Get-Clipboard) -split "`n"), - [ValidateSet('Win10', 'Win11')][string]$OS = (Get-OSFromVersion), - [int]$vm = ((Get-NextFreeVM -OS $OS) -replace 'vm', ''), - #$out = ((Get-SecondMatch) -split "`n"), - [switch]$NoFiles, - [ValidateSet('Config', 'DevHomeConfig', 'Pin', 'Scan')][string]$Operation = 'Scan', - [switch]$InspectNew, - [switch]$notElevated, - $ManualDependency, - $PackageIdentifier = (Get-YamlValue -StringName 'PackageIdentifier' $out), - $PackageVersion = ((Get-YamlValue -StringName 'PackageVersion' $out) -replace '"', '' -replace "'", ''), - $RemoteFolder = "//$remoteIP/ManVal/vm/$vm", - $installerLine = "--manifest $RemoteFolder/manifest", - [ValidateSet('x86', 'x64', 'arm', 'arm32', 'arm64', 'neutral')][string]$Arch, - [ValidateSet('User', 'Machine')][string]$Scope, - [ValidateSet('de-DE', 'en-US', 'es-ES', 'fr-FR', 'it-IT', 'ja-JP', 'ko-KR', 'pt-BR', 'ru-RU', 'zh-CN', 'zh-HK', 'zh-TW')] - [string]$Locale, - $vmStatusFile = "$RemoteFolder\$vm.txt", - $optionsLine = '' - ) - Test-Admin - if ($vm -eq 0) { - Write-Host "No available $OS VMs"; - Generate-PipelineVm -OS $OS; - Break; - } - Set-Status 'Prevalidation' $vm - if ((Get-VM "vm$vm").state -ne 'Running') { Start-VM "vm$vm" } - if ($PackageIdentifier -eq '') { - Write-Host "Bad PackageIdentifier: $PackageIdentifier" - Break; - } - Write-Host "Running Manual Validation build $build on vm$vm for package $PackageIdentifier version $PackageVersion" - - $logLine = "$OS " - $nonElevatedShell = '' - $logExt = 'log' - $VMFolder = "$MainFolder\vm\$vm" - $manifestFolder = "$VMFolder\manifest" - $CmdsFileName = "$VMFolder\cmds.ps1" - - if ($PackageVersion) { - $logExt = $PackageVersion + '.' + $logExt - $logLine += "version $PackageVersion " - } - if ($Locale) { - $logExt = $Locale + '.' + $logExt - $optionsLine += " --locale $Locale " - $logLine += "locale $Locale " - } - if ($Scope) { - $logExt = $Scope + '.' + $logExt - $optionsLine += " --scope $Scope " - $logLine += "scope $Scope " - } - $Archs = ($out | Select-String -NotMatch 'arm' | Select-String 'Architecture: ' ) | ForEach-Object { ($_ -split ': ')[1] } - $archDetect = '' - $archColor = 'yellow' - if ($Archs) { - if ($Archs[0].length -ge 2) { - if ($Arch) { - $archDetect = 'Selected' - } else { - $Arch = $Archs[0] - $archDetect = 'Detected' - } - $otherArch = $Archs | Select-String -NotMatch $Arch - $archColor = 'red' - } else { - if ($Archs -eq 'neutral') { - $archColor = 'yellow' - } else { - $Arch = $Archs - $archDetect = 'Detected' - $archColor = 'green' - } - } - } - if ($Arch) { - $logExt = $Arch + '.' + $logExt - Write-Host "$archDetect Arch $Arch of available architectures: $Archs" -f $archColor - $optionsLine += " --architecture $Arch " - $logLine += "$Arch " - } - <#Automatic manual dependency support to preinstall dependencies when dependencies are not supported, for more complete testing confirmation. - if (!$ManualDependency) { - $ManualDependency = try {($out[($out | Select-String "PackageDependencies:").LineNumber] -split ": ")[1]}catch{} - } - #> - $MDLog = '' - if ($ManualDependency) { - $MDLog = $ManualDependency - Write-Host " = = = = Installing manual dependency $ManualDependency = = = = " - [string]$ManualDependency = "Out-Log 'Installing manual dependency $ManualDependency.';Start-Process 'winget' 'install " + $ManualDependency + " --accept-package-agreements --ignore-local-archive-malware-scan' -wait`n" - } - if ($notElevated -OR ($out | Select-String 'ElevationRequirement: elevationProhibited')) { - Write-Host ' = = = = Detecting de-elevation requirement = = = = ' - $nonElevatedShell = "if ([bool](([System.Security.Principal.WindowsIdentity]::GetCurrent()).groups -match 'S-1-5-32-544')){& explorer.exe 'C:\Program Files\PowerShell\7\pwsh.exe';Stop-Process (Get-Process WindowsTerminal).id}" - #If elevated, run^^ and exit, else run cmds. - } - $packageDeveloper = ($PackageIdentifier -split '[.]')[0] - $packageName = ($PackageIdentifier -split '[.]')[1] - - $cmdsOut = '' - - switch ($Operation) { - 'Config' { - $cFile = 'configuration.dsc.yaml' - $cPath = "$MainFolder/misc/$cFile" - Write-Host "Writing $($out.length) lines to $cPath" - $out | Out-File $cPath - $yamlFile = "$RemoteMainFolder/ManVal/misc/$cFile" - - $repoOwner = ($out[1] -split '/')[3] - $repoName = (($out[1] -split '/')[4] -split '#')[0] - - Write-Host "Detecting repoOwner $repoOwner and repoName $repoName" - - <#Clone the repo so that it's available to be the wildcard, just in case the config has a wildcard location. - -Run config on bare PS -Run config on Devhome -Install Git and clone repo if has wildcard -Verify same output - - -Installs Git -Clones Repo (if has ) -Either install DevHome or run Config -#> - - - - $cmdsOut = "$nonElevatedShell -`$TimeStart = Get-Date; -`$ManValLogFolder = `"$SharedFolder/logs/$(Get-Date -UFormat %B)/`$(Get-Date -Format dd)`" -Function Out-Log ([string]`$logData,[string]`$logColor='cyan') { - `$TimeStamp = (Get-Date -Format T) + ': '; - `$logEntry = `$TimeStamp + `$logData - Write-Host `$logEntry -f `$logColor; - md `$ManValLogFolder -ErrorAction Ignore - `$logEntry | Out-File `"`$ManValLogFolder/$PackageIdentifier.$logExt`" -Append -}; -Function Out-ErrorData (`$errArray,[string]`$serviceName,`$errorName='errors') { - Out-Log `"Detected `$(`$errArray.count) `$serviceName `$(`$errorName): `" - `$errArray | %{Out-Log `$_ 'red'} -}; -Set-Status 'Installing' $vm -Out-Log ' = = = = Starting Manual Validation pipeline version $build on VM $vm $PackageIdentifier $logLine = = = = ' - -Out-Log 'Clearing PowerShell errors.' -`$Error.Clear() -Out-Log 'Clearing Application Log.' -Clear-EventLog -LogName Application -ErrorAction Ignore -Out-Log 'Clearing WinGet Log folder.' -`$WinGetLogFolder = 'C:\Users\User\AppData\Local\Packages\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe\LocalState\DiagOutputDir' -rm `$WinGetLogFolder\* -Out-Log 'Gathering WinGet info.' -`$info = winget --info -Out-ErrorData @(`$info[0],`$info[3],`$info[4],`$info[5]) 'WinGet' 'infos' - -$ManualDependency -`$wingetArgs = 'install $optionsLine $installerLine --accept-package-agreements --ignore-local-archive-malware-scan' -Out-Log `"Main Package Install with args: `$wingetArgs`" -`$mainpackage = (Start-Process 'winget' `$wingetArgs -wait -PassThru); - -Out-Log `"`$(`$mainpackage.processname) finished with exit code: `$(`$mainpackage.ExitCode)`"; -If (`$mainpackage.ExitCode -ne 0) { - Out-Log 'Install Failed.'; - explorer.exe `$WinGetLogFolder; - Break; -} - -`$repoGit = `"https://github.com/$repoOwner/$repoName.git`" -`$repoFolder = `"c:\repos`" -`$configFolder = `"`$repoFolder\$repoName\.configurations`" -md `$repoFolder -cd `$repoFolder -if (`$repoGit.length -gt 24) { - &`"c:\program files\git\bin\git.exe`" clone `$repoGit -} else { -} -md `$configFolder -cd `$configFolder -Write-Host `"Writing to `$configFolder\$cFile`" -Copy-item $yamlFile `"`$configFolder\$cFile`" -winget configure `"`$configFolder\$cFile`" - -Out-ErrorData ((Get-ChildItem `$WinGetLogFolder).fullname | %{Get-Content `$_ |Where-Object {`$_ -match '[[]FAIL[]]' -OR `$_ -match 'failed' -OR `$_ -match 'error' -OR `$_ -match 'does not match'}}) 'WinGet' -Out-ErrorData '$MDLog' 'Manual' 'Dependency' -Out-ErrorData `$Error 'PowerShell' -Out-ErrorData (Get-EventLog Application -EntryType Error -after `$TimeStart -ErrorAction Ignore).Message 'Application Log' - -Out-Log `" = = = = Completing Manual Validation pipeline version $build on VM $vm for $PackageIdentifier $logLine in `$(((Get-Date) -`$TimeStart).TotalSeconds) seconds. = = = = `" -Set-Status 'ValidationComplete' $vm -" - - } - 'DevHomeConfig' { - $cFile = 'configuration.dsc.yaml' - $cPath = "$MainFolder/misc/$cFile" - Write-Host "Writing $($out.length) lines to $cPath" - $out | Out-File $cPath - $yamlFile = "$RemoteMainFolder/ManVal/misc/$cFile" - - $repoOwner = ($out[1] -split '/')[3] - $repoName = (($out[1] -split '/')[4] -split '#')[0] - - Write-Host "Detecting repoOwner $repoOwner and repoName $repoName" - - $cmdsOut = "$nonElevatedShell -`$TimeStart = Get-Date; -`$ManValLogFolder = `"$SharedFolder/logs/$(Get-Date -UFormat %B)/`$(Get-Date -Format dd)`" -Function Out-Log ([string]`$logData,[string]`$logColor='cyan') { - `$TimeStamp = (Get-Date -Format T) + ': '; - `$logEntry = `$TimeStamp + `$logData - Write-Host `$logEntry -f `$logColor; - md `$ManValLogFolder -ErrorAction Ignore - `$logEntry | Out-File `"`$ManValLogFolder/$PackageIdentifier.$logExt`" -Append -}; -Function Out-ErrorData (`$errArray,[string]`$serviceName,`$errorName='errors') { - Out-Log `"Detected `$(`$errArray.count) `$serviceName `$(`$errorName): `" - `$errArray | %{Out-Log `$_ 'red'} -}; -Set-Status 'Installing' $vm -Out-Log ' = = = = Starting Manual Validation pipeline version $build on VM $vm $PackageIdentifier $logLine = = = = ' - -Out-Log 'Clearing PowerShell errors.' -`$Error.Clear() -Out-Log 'Clearing Application Log.' -Clear-EventLog -LogName Application -ErrorAction Ignore -Out-Log 'Clearing WinGet Log folder.' -`$WinGetLogFolder = 'C:\Users\User\AppData\Local\Packages\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe\LocalState\DiagOutputDir' -rm `$WinGetLogFolder\* -Out-Log 'Gathering WinGet info.' -`$info = winget --info -Out-ErrorData @(`$info[0],`$info[3],`$info[4],`$info[5]) 'WinGet' 'infos' - -$ManualDependency -`$wingetArgs = 'install $optionsLine $installerLine --accept-package-agreements --ignore-local-archive-malware-scan' -Out-Log `"Main Package Install with args: `$wingetArgs`" -`$mainpackage = (Start-Process 'winget' `$wingetArgs -wait -PassThru); - -Out-Log `"`$(`$mainpackage.processname) finished with exit code: `$(`$mainpackage.ExitCode)`"; -If (`$mainpackage.ExitCode -ne 0) { - Out-Log 'Install Failed.'; - explorer.exe `$WinGetLogFolder; - Break; -} - -`$repoGit = `"https://github.com/$repoOwner/$repoName.git`" -`$repoFolder = `"c:\repos`" -`$configFolder = `"`$repoFolder\$repoName\.configurations`" -md `$repoFolder -cd `$repoFolder -if (`$repoGit.length -gt 24) { - Out-Log (&`"c:\program files\git\bin\git.exe`" clone `$repoGit) -} else { -} -md `$configFolder -cd `$configFolder -Out-Log `"Writing to `$configFolder\`$cFile`" -Copy-item $yamlFile `"`$configFolder\`$cFile`" - -`"`$configFolder\`$cFile`" | clip.exe -Read-Host `"Use DevHome to check `$configFolder\$cFile, then press ENTER to continue...`" #Uncomment to examine installer before scanning, for when scanning disrupts the install. - -Out-ErrorData ((Get-ChildItem `$WinGetLogFolder).fullname | %{Get-Content `$_ |Where-Object {`$_ -match '[[]FAIL[]]' -OR `$_ -match 'failed' -OR `$_ -match 'error' -OR `$_ -match 'does not match'}}) 'WinGet' -Out-ErrorData '$MDLog' 'Manual' 'Dependency' -Out-ErrorData `$Error 'PowerShell' -Out-ErrorData (Get-EventLog Application -EntryType Error -after `$TimeStart -ErrorAction Ignore).Message 'Application Log' - -Out-Log `" = = = = Completing Manual Validation pipeline version $build on VM $vm for $PackageIdentifier $logLine in `$(((Get-Date) -`$TimeStart).TotalSeconds) seconds. = = = = `" -Set-Status 'ValidationComplete' $vm -" - - } - 'Pin' { - $cFile = 'pinFile.txt' - $cPath = "$MainFolder/misc/$cFile" - Write-Host "Writing $($out.length) lines to $cPath" - $out | Out-File $cPath - $yamlFile = "$RemoteMainFolder/ManVal/misc/$cFile" - - $cmdsOut = "$nonElevatedShell -`$TimeStart = Get-Date; -`$ManValLogFolder = `"$SharedFolder/logs/$(Get-Date -UFormat %B)/`$(Get-Date -Format dd)`" -Function Out-Log ([string]`$logData,[string]`$logColor='cyan') { - `$TimeStamp = (Get-Date -Format T) + ': '; - `$logEntry = `$TimeStamp + `$logData - Write-Host `$logEntry -f `$logColor; - md `$ManValLogFolder -ErrorAction Ignore - `$logEntry | Out-File `"`$ManValLogFolder/$PackageIdentifier.$logExt`" -Append -}; -Function Out-ErrorData (`$errArray,[string]`$serviceName,`$errorName='errors') { - Out-Log `"Detected `$(`$errArray.count) `$serviceName `$(`$errorName): `" - `$errArray | %{Out-Log `$_ 'red'} -}; -Set-Status 'Installing' $vm -Out-Log ' = = = = Starting Manual Validation pipeline version $build on VM $vm $PackageIdentifier $logLine = = = = ' - -Out-Log 'Pre-testing log cleanup.' -Out-Log 'Upgrading installed applications.' -Out-Log (WinGet upgrade --all --include-pinned --disable-interactivity) | where {$_ -notmatch 'Γûê'} -Out-Log 'Clearing PowerShell errors.' -`$Error.Clear() -Out-Log 'Clearing Application Log.' -Clear-EventLog -LogName Application -ErrorAction Ignore -Out-Log 'Clearing WinGet Log folder.' -`$WinGetLogFolder = 'C:\Users\User\AppData\Local\Packages\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe\LocalState\DiagOutputDir' -rm `$WinGetLogFolder\* -Out-Log 'Updating Defender signature.' -Update-MpSignature -Out-Log 'Gathering WinGet info.' -`$info = winget --info -Out-ErrorData @(`$info[0],`$info[3],`$info[4],`$info[5]) 'WinGet' 'infos' - -$ManualDependency -`$wingetArgs = 'install $optionsLine $installerLine --accept-package-agreements --ignore-local-archive-malware-scan' -Out-Log `"Main Package Install with args: `$wingetArgs`" -`$mainpackage = (Start-Process 'winget' `$wingetArgs -wait -PassThru); - -Out-Log `"`$(`$mainpackage.processname) finished with exit code: `$(`$mainpackage.ExitCode)`"; -If (`$mainpackage.ExitCode -ne 0) { - Out-Log 'Install Failed.'; - explorer.exe `$WinGetLogFolder; -Out-ErrorData ((Get-ChildItem `$WinGetLogFolder).fullname | %{Get-Content `$_ |Where-Object {`$_ -match '[[]FAIL[]]' -OR `$_ -match 'failed' -OR `$_ -match 'error' -OR `$_ -match 'does not match'}}) 'WinGet' -Out-ErrorData '$MDLog' 'Manual' 'Dependency' -Out-ErrorData `$Error 'PowerShell' -Out-ErrorData (Get-EventLog Application -EntryType Error -after `$TimeStart -ErrorAction Ignore).Message 'Application Log' - -Out-Log `" = = = = Failing Manual Validation pipeline version $build on VM $vm for $PackageIdentifier $logLine in `$(((Get-Date) -`$TimeStart).TotalSeconds) seconds. = = = = `" -Set-Status 'ValidationComplete' $vm - Break; -} - - -#Read-Host 'Install complete, press ENTER to continue...' #Uncomment to examine installer before scanning, for when scanning disrupts the install. - - -Out-ErrorData ((Get-ChildItem `$WinGetLogFolder).fullname | %{Get-Content `$_ |Where-Object {`$_ -match '[[]FAIL[]]' -OR `$_ -match 'failed' -OR `$_ -match 'error' -OR `$_ -match 'does not match'}}) 'WinGet' -Out-ErrorData '$MDLog' 'Manual' 'Dependency' -Out-ErrorData `$Error 'PowerShell' -Out-ErrorData (Get-EventLog Application -EntryType Error -after `$TimeStart -ErrorAction Ignore).Message 'Application Log' - -Out-Log `" = = = = Completing Manual Validation pipeline version $build on VM $vm for $PackageIdentifier $logLine in `$(((Get-Date) -`$TimeStart).TotalSeconds) seconds. = = = = `" -Set-Status 'ValidationComplete' $vm -" - } - - 'Scan' { - $cmdsOut = "$nonElevatedShell -`$TimeStart = Get-Date; -`$ManValLogFolder = `"$SharedFolder/logs/$(Get-Date -UFormat %B)/`$(Get-Date -Format dd)`" -Function Out-Log ([string]`$logData,[string]`$logColor='cyan') { - `$TimeStamp = (Get-Date -Format T) + ': '; - `$logEntry = `$TimeStamp + `$logData - Write-Host `$logEntry -f `$logColor; - md `$ManValLogFolder -ErrorAction Ignore - `$logEntry | Out-File `"`$ManValLogFolder/$PackageIdentifier.$logExt`" -Append -}; -Function Out-ErrorData (`$errArray,[string]`$serviceName,`$errorName='errors') { - Out-Log `"Detected `$(`$errArray.count) `$serviceName `$(`$errorName): `" - `$errArray | %{Out-Log `$_ 'red'} -}; -Set-Status 'Installing' $vm -Out-Log ' = = = = Starting Manual Validation pipeline version $build on VM $vm $PackageIdentifier $logLine = = = = ' - -Out-Log 'Pre-testing log cleanup.' -Out-Log 'Upgrading installed applications.' -Out-Log (WinGet upgrade --all --include-pinned --disable-interactivity) | where {$_ -notmatch 'Γûê'} -Out-Log 'Clearing PowerShell errors.' -`$Error.Clear() -Out-Log 'Clearing Application Log.' -Clear-EventLog -LogName Application -ErrorAction Ignore -Out-Log 'Clearing WinGet Log folder.' -`$WinGetLogFolder = 'C:\Users\User\AppData\Local\Packages\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe\LocalState\DiagOutputDir' -rm `$WinGetLogFolder\* -Out-Log 'Updating Defender signature.' -Update-MpSignature -Out-Log 'Gathering WinGet info.' -`$info = winget --info -Out-ErrorData @(`$info[0],`$info[3],`$info[4],`$info[5]) 'WinGet' 'infos' - -$ManualDependency -`$wingetArgs = 'install $optionsLine $installerLine --accept-package-agreements --ignore-local-archive-malware-scan' -Out-Log `"Main Package Install with args: `$wingetArgs`" -`$mainpackage = (Start-Process 'winget' `$wingetArgs -wait -PassThru); - -Out-Log `"`$(`$mainpackage.processname) finished with exit code: `$(`$mainpackage.ExitCode)`"; -If (`$mainpackage.ExitCode -ne 0) { - Out-Log 'Install Failed.'; - explorer.exe `$WinGetLogFolder; -Out-ErrorData ((Get-ChildItem `$WinGetLogFolder).fullname | %{Get-Content `$_ |Where-Object {`$_ -match '[[]FAIL[]]' -OR `$_ -match 'failed' -OR `$_ -match 'error' -OR `$_ -match 'does not match'}}) 'WinGet' -Out-ErrorData '$MDLog' 'Manual' 'Dependency' -Out-ErrorData `$Error 'PowerShell' -Out-ErrorData (Get-EventLog Application -EntryType Error -after `$TimeStart -ErrorAction Ignore).Message 'Application Log' - -Out-Log `" = = = = Failing Manual Validation pipeline version $build on VM $vm for $PackageIdentifier $logLine in `$(((Get-Date) -`$TimeStart).TotalSeconds) seconds. = = = = `" -Set-Status 'ValidationComplete' $vm - Break; -} -#Read-Host 'Install complete, press ENTER to continue...' #Uncomment to examine installer before scanning, for when scanning disrupts the install. - -Set-Status 'Scanning' $vm - -Out-Log 'Install complete, starting file change scan.' -`$files = '' -if (Test-Path $RemoteFolder\files.txt) { - `$files = Get-Content $RemoteFolder\files.txt -} else { - `$files1 = (Get-ChildItem c:\ -File -Recurse -ErrorAction Ignore -Force | where {`$_.CreationTime -gt `$TimeStart}).FullName - `$files2 = (Get-ChildItem c:\ -File -Recurse -ErrorAction Ignore -Force | where {`$_.LastAccessTIme -gt `$TimeStart}).FullName - `$files = `$files1 + `$files2 | Select-Object -Unique -} - -Out-Log `"Reading `$(`$files.count) file changes in the last `$(((Get-Date) -`$TimeStart).TotalSeconds) seconds. Starting bulk file execution:`" -`$files = `$files | where {`$_ -notmatch 'unins'} | where {`$_ -notmatch 'dotnet'} | where {`$_ -notmatch 'redis'} | where {`$_ -notmatch 'System32'} | where {`$_ -notmatch 'SysWOW64'} | where {`$_ -notmatch 'WinSxS'} | where {`$_ -notmatch 'dump64a'} -`$files | Out-File 'C:\Users\user\Desktop\ChangedFiles.txt' -`$files | select-string '[.]exe`$' | %{Out-Log `$_; try{Start-Process `$_}catch{}}; -`$files | select-string '[.]msi`$' | %{Out-Log `$_; try{Start-Process `$_}catch{}}; -`$files | select-string '[.]lnk`$' | %{Out-Log `$_; try{Start-Process `$_}catch{}}; - -Out-Log `" = = = = End file list. Starting Defender scan.`" -Start-MpScan; - -Out-Log `"Defender scan complete, closing windows...`" -(get-process | Where-Object { `$_.mainwindowtitle -ne '' -and `$_.processname -notmatch '$packageName' -and `$_.processname -ne 'powershell' -and `$_.processname -ne 'WindowsTerminal' -and `$_.processname -ne 'csrss' -and `$_.processname -ne 'dwm'})| %{ - `$process = (Stop-Process `$_ -PassThru); - Out-Log `"`$(`$process.processname) finished with exit code: `$(`$process.ExitCode)`"; -} - -Out-ErrorData (Get-MPThreat).ThreatName `"Defender (with signature version `$((Get-MpComputerStatus).QuickScanSignatureVersion))`" -Out-ErrorData ((Get-ChildItem `$WinGetLogFolder).fullname | %{Get-Content `$_ |Where-Object {`$_ -match '[[]FAIL[]]' -OR `$_ -match 'failed' -OR `$_ -match 'error' -OR `$_ -match 'does not match'}}) 'WinGet' -Out-ErrorData '$MDLog' 'Manual' 'Dependency' -Out-ErrorData `$Error 'PowerShell' -Out-ErrorData (Get-EventLog Application -EntryType Error -after `$TimeStart -ErrorAction Ignore).Message 'Application Log' - -Out-Log `" = = = = Completing Manual Validation pipeline version $build on VM $vm for $PackageIdentifier $logLine in `$(((Get-Date) -`$TimeStart).TotalSeconds) seconds. = = = = `" -Set-Status 'ValidationComplete' $vm -" - } - Default { - Write-Host 'Error: Bad Function' - Break; - } - } - - $cmdsOut | Out-File $CmdsFileName - - if ($NoFiles -eq $False) { - #Extract multi-part manifest from clipboard and write to disk - Write-Host 'Removing previous manifest and adding current...' - Remove-FileIfExists "$manifestFolder" -remake - $Files = @() - $Files += 'Package.installer.yaml' - $FileNames = ($out | Select-String '[.]yaml') | ForEach-Object { ($_ -split '/')[-1] } - $replace = $FileNames[-1] -replace '.yaml' - $FileNames | ForEach-Object { - $Files += $_ -replace $replace, 'Package' - } - $out = $out -join "`n" -split '@@' - for ($i = 0; $i -lt $Files.length; $i++) { - $File = $Files[$i] - $inputObj = $out[$i * 2] -split "`n" - $inputObj = $inputObj[1..(($inputObj | Select-String 'ManifestVersion' -SimpleMatch).LineNumber - 1)] | Where-Object { $_ -notmatch 'marked this conversation as resolved.' } - $FilePath = "$manifestFolder\$File" - Write-Host "Writing $($inputObj.length) lines to $FilePath" - Out-File -FilePath $FilePath -InputObject $inputObj - #Bugfix to catch package identifier appended to last line of last file. - $fileContents = (Get-Content $FilePath) - if ($fileContents[-1] -match $PackageIdentifier) { - $fileContents[-1] = ($fileContents[-1] -split $PackageIdentifier)[0] - } - $fileContents -replace '0New version: ', '0' -replace '0New package: ', '0' -replace '0Add version: ', '0' -replace '0Add package: ', '0' -replace '0Add ', '0' -replace '0New ', '0' -replace '0package: ', '0' | Out-File $FilePath - } - $filecount = (Get-ChildItem $manifestFolder).count - $filedir = 'ok' - $filecolor = 'green' - if ($filecount -lt 3) { $filedir = 'too low'; $filecolor = 'red' } - if ($filecount -gt 3) { $filedir = 'high'; $filecolor = 'yellow' } - if ($filecount -gt 10) { $filedir = 'too high'; $filecolor = 'red' } - Write-Host -f $filecolor "File count $filecount is $filedir" - if ($filecount -lt 3) { break } - Check-ManifestFile $vm; - }#end if NoFiles - - if ($InspectNew) { - $PackageResult = Search-WinGetManifest $PackageIdentifier - Write-Host "Searching Winget for $PackageIdentifier" - Write-Host $PackageResult - if ($PackageResult -eq 'No package found matching input criteria.') { - Open-AllURLs - Start-Process "https://www.bing.com/search?q=$PackageIdentifier" - $a, $b = $PackageIdentifier -split '[.]' - Write-Host "Searching Winget for $a" - if ($a -ne '') { - Search-WinGetManifest $a - } - Write-Host "Searching Winget for $b" - if ($b -ne '') { - Search-WinGetManifest $b - } - } - } - Write-Host 'File operations complete, starting VM operations.' - Revert-VM $vm - Launch-VMTrackerWindow $vm -} - -Function Validate-PackageByID { - param( - $PackageIdentifier = (Get-Clipboard) - ) - Validate-Package -installerLine "--id $PackageIdentifier" -PackageIdentifier $PackageIdentifier -NoFiles #-notElevated -} - -Function Validate-PackageByConfig { - param( - $PackageIdentifier = 'Microsoft.Devhome', - $ManualDependency = 'Git.Git' - ) - - Validate-Package -installerLine "--id $PackageIdentifier" -PackageIdentifier $PackageIdentifier -NoFiles -ManualDependency $ManualDependency -Operation 'DevHomeConfig' - Start-Sleep 2 - Validate-Package -installerLine "--id $ManualDependency" -PackageIdentifier $ManualDependency -NoFiles -Operation 'Config' -} - -#VM Management -Function Complete-TrackerVM { - param( - [Parameter(mandatory = $true)][int]$vm, - $VMFolder = "$MainFolder\vm\$vm", - $filesFileName = "$VMFolder\files.txt", - [switch]$Reset - ) - Test-Admin - Set-Status 'Completing' $vm - Stop-Process -Id ((Get-ConnectedVMs) | Where-Object { $_.VM -match "vm$vm" }).id -ErrorAction Ignore - Stop-TrackerVM $vm - Remove-FileIfExists $filesFileName - Set-Status 'Ready' $vm -} - -Function Generate-PipelineVm { - param( - [int]$vm = (Get-Content $vmCounter), - [int]$version = (Get-TrackerVMversion), - [ValidateSet('Win10', 'Win11')][string]$OS = 'Win10', - $destinationPath = "$imagesFolder\$vm\", - $VMFolder = "$MainFolder\vm\$vm", - $newVmName = "vm$vm", - $startTime = (Get-Date) - ) - Test-Admin - $vm + 1 | Out-File $vmCounter - "`"$vm`",`"Generating`",`"$version`",`"$OS`"" | Out-File $StatusFile -Append - Remove-FileIfExists $destinationPath -remake - Remove-FileIfExists $VMFolder -remake - $vmImageFolder = '' - - switch ($OS) { - 'Win10' { - $vmImageFolder = "$imagesFolder\Win10-image\Virtual Machines\0CF98E8A-73BB-4E33-ABA6-7513F376407D.vmcx" - } - 'Win11' { - $vmImageFolder = "$imagesFolder\Win11-image\Virtual Machines\D2C1F2F3-927D-4B43-A026-5208274EA61C.vmcx" - } - } - - Write-Host 'Takes about 120 seconds...' - Import-VM -Path $vmImageFolder -Copy -GenerateNewId -VhdDestinationPath $destinationPath -VirtualMachinePath $destinationPath; - Rename-VM (Get-VM | Where-Object { ($_.CheckpointFileLocation) + '\' -eq $destinationPath }) -NewName $newVmName - Start-VM $newVmName - Remove-VMCheckpoint -VMName $newVmName -Name 'Backup' - Revert-VM $vm - Launch-VMTrackerWindow $vm - Write-Host "Took $(((Get-Date)-$startTime).TotalSeconds) seconds..." -} - -Function Disgenerate-PipelineVm { - param( - [Parameter(mandatory = $true)][int]$vm, - $destinationPath = "$imagesFolder\$vm\", - $VMFolder = "$MainFolder\vm\$vm", - $vmName = "vm$vm" - ) - Test-Admin - Set-Status 'Disgenerate' $vm - Stop-TrackerVM $vm - Remove-VM -Name $vmName -Force - - $out = Get-Status - $out = $out | Where-Object { $_.vm -notmatch $VM } - $out | ConvertTo-Csv | Out-File $StatusFile - - $delay = 15 - 0..$delay | ForEach-Object { - $pct = $_ / $delay * 100 - Write-Progress -Activity 'Remove VM' -Status "$_ of 30" -PercentComplete $pct - Start-Sleep 1 - } - Remove-FileIfExists $destinationPath - Remove-FileIfExists $VMFolder -} - -Function Start-ImageVM { - param( - [ValidateSet('Win10', 'Win11')][string]$OS = 'Win10' - ) - Test-Admin - $vm = 0 - Start-VM $OS; - Revert-VM $vm $OS; - Launch-VMTrackerWindow $vm $OS - #Set-Status "Ready" $vm -} - -Function Stop-ImageVM { - param( - [ValidateSet('Win10', 'Win11')][string]$OS = 'Win10' - ) - Test-Admin - $vm = 0 - $OriginalLoc = '' - switch ($OS) { - 'Win10' { - $OriginalLoc = "$imagesFolder\Win10-Created061623-Original" - } - 'Win11' { - $OriginalLoc = "$imagesFolder\Win11-Created030623-Original\" - } - } - $ImageLoc = "$imagesFolder\$OS-image\" - $version = Get-TrackerVMVersion + 1 - Write-Host "Writing $OS version $version" - Set-TrackerVMVersion $version - Stop-Process -Id ((Get-ConnectedVMs) | Where-Object { $_.VM -match "$OS" }).id -ErrorAction Ignore - Redo-Checkpoint $vm $OS; - Stop-TrackerVM $vm $OS - Robocopy.exe $OriginalLoc $ImageLoc -mir -} - -Function Remove-PR { - #This hasn't been tested, and is just the skeleton of a Quick Remover for Bad PRs. - param( - $gitUrl, - $branchName, - $prFolder - ) - git clone $gitUrl - git branch $branchName - Remove-Item folder $prFolder - git commit - Start-Process $gitUrl - Write-Host 'go make PR on GitHub' -} - -#VM Utilities -Function Cycle-VMs { - param( - [int]$Validate - ) - #Get-Content $File | %{& [scriptblock]::Create($Command+" "+$vm) - $VMs = Get-Status - Foreach ($VM in $VMs) { - Switch ($VM.status) { - 'CheckpointReady' { - Redo-Checkpoint $VM.vm - } - 'Complete' { - Complete-TrackerVM $VM.vm - } - 'Revert' { - Revert-VM $VM.vm - } - 'Disgenerate' { - Disgenerate-PipelineVm $VM.vm - } - 'Regenerate' { - Disgenerate-PipelineVm $VM.vm - Generate-PipelineVm -OS $VM.os - } - default { - #Write-Host "Complete" - } - }; #end switch - } -} - -Function Set-Status { - param( - [ValidateSet('Prevalidation', 'CheckpointComplete', 'Checkpointing', 'CheckpointReady', 'Completing', 'Complete', 'Disgenerate', 'Generating', 'Prescan', 'Ready', 'Rebooting', 'Regenerate', 'Restoring', 'Revert', 'Scanning', 'Setup', 'SetupComplete', 'Starting', 'Updating', 'Installing', 'ValidationComplete')] - $Status = 'Complete', - $VM - ) - $out = Get-Status - ($out | Where-Object { $_.vm -match $VM }).status = $Status - $out | ConvertTo-Csv | Out-File $StatusFile - Write-Host "Setting $vm state $Status" -} - -Function Get-Status { - param( - [int]$vm, - [ValidateSet('Prevalidation', 'CheckpointComplete', 'Checkpointing', 'CheckpointReady', 'Completing', 'Complete', 'Disgenerate', 'Generating', 'Prescan', 'Ready', 'Rebooting', 'Regenerate', 'Restoring', 'Revert', 'Scanning', 'Setup', 'SetupComplete', 'Starting', 'Updating', 'Installing', 'ValidationComplete')] - $Status, - [ValidateSet('Win10', 'Win11')][string]$OS, - $out = (Get-Content $StatusFile | ConvertFrom-Csv) - ) - if ($OS) { - $out = ($out | Where-Object { $_.OS -eq $OS }) - } - if ($vm) { - $out = ($out | Where-Object { $_.vm -eq $vm }).status - } - if ($Status) { - $out = ($out | Where-Object { $_.version -eq (Get-TrackerVMVersion) } | Where-Object { $_.status -eq $Status }).vm - } - $out -} - -Function Reset-Status { - if (!(Get-ConnectedVMs)) { - $VMs = (get-status | Where-Object { $_.status -ne 'Ready' }).vm - Foreach ($VM in $VMs) { Set-Status Complete $_ } - Get-Process *vmwp* | Stop-Process - } -} - -Function Rebuild-Status { - Get-VM | Where-Object { $_.name -notmatch 'vm0' } | Select-Object @{n = 'vm'; e = { $_.name } }, @{n = 'status'; e = { 'Ready' } }, @{n = 'version'; e = { 36 } }, @{n = 'OS'; e = { 'Win11' } } | ConvertTo-Csv | Out-File $StatusFile -} - -Function Run-StatusTracker { - while ($true) { - #$StuckVMs = (diff (Get-Status | where {$_.status -eq "ValidationComplete"}).vm ((Get-ConnectedVMs).vm -replace "vm","")).inputobject - #Foreach ($vm in $StuckVMs) { - #Set-Status Complete $vm - #} - Cycle-VMs; - Start-Sleep 5; - Clear-Host - Get-Status - $clip = (Get-Clipboard) - If ($clip -match 'https://dev.azure.com/ms/') { - Get-AutoValLogs - } elseIf ($clip -match 'Skip to content') { - #Validate-Package; - #"Validating"|clip - } elseIf ($clip -match ' Windows Package Manager') { - Get-PRNumbers - } - if (!(Get-ConnectedVMs)) { - Reset-Status - } - } -} - -Function Get-SharedError { - (Get-Content "$writeFolder\err.txt") -replace 'Faulting', "`n> Faulting" -replace '2023', "`n> 2023" | clip -} - -Function Get-ConnectedVMs { - Test-Admin - (Get-Process *vmconnect*) | Select-Object id, @{n = 'VM'; e = { ForEach-Object { $_.mainwindowtitle[0..4] -join '' } } } -} - -Function Get-NextFreeVM { - param( - [ValidateSet('Win10', 'Win11')][string]$OS = 'Win10' - ) - Test-Admin - try { - Get-Status -OS $OS -Status Ready | Get-Random - } catch { - Write-Host "No available $OS VMs" - Break; - } -} - -Function Get-ExistingVMs { - Test-Admin - (Get-VM).name | Select-String -NotMatch 'Win' -} - -Function Launch-VMTrackerWindow { - param( - [Parameter(mandatory = $true)][int]$vm, - $VMName = "vm$vm" - ) - Test-Admin - Get-ConnectedVMs | Where-Object { $_.vm -match $VMName } | ForEach-Object { Stop-Process -Id $_.id } - C:\Windows\System32\vmconnect.exe localhost $VMName -} - -Function Redo-Checkpoint { - param( - [Parameter(mandatory = $true)][int]$vm, - $VMName = "vm$vm" - ) - Test-Admin - Set-Status 'Checkpointing' $vm - Remove-VMCheckpoint -Name $CheckpointName -VMName $VMName - Checkpoint-VM -SnapshotName $CheckpointName -VMName $VMName - Set-Status 'Complete' $vm -} - -Function Revert-VM { - param( - [Parameter(mandatory = $true)][int]$vm, - $VMName = "vm$vm" - ) - Test-Admin - Set-Status 'Restoring' $vm - Restore-VMCheckpoint -Name $CheckpointName -VMName $VMName -Confirm:$false -} - -Function Get-OSFromVersion { - try { - if ([system.version](Get-YamlValue -StringName MinimumOSVersion) -ge [system.version]'10.0.22000.0') { 'Win11' }else { 'Win10' } - } catch { - 'Win10' - } -} - -Function Get-TrackerVMVersion { Get-Content $VMversion } - -Function Set-TrackerVMVersion { param([int]$Version) $Version | Out-File $VMversion } - -Function Stop-TrackerVM { - param( - [Parameter(mandatory = $true)][int]$vm, - $VMName = "vm$vm" - ) - Test-Admin - Stop-VM $VMName -TurnOff -} - -#File Management -Function Get-ManifestFile { - param( - #[Parameter(mandatory=$true)] - [int]$vm = ((Get-NextFreeVM) -replace 'vm', ''), - [Switch]$Installer, - $clip = (Get-SecondMatch), - $FileName = 'Package' - ); - $clip = $clip | Where-Object { $_ -notmatch 'marked this conversation as resolved.' } - if (!(Test-Path "C:\ManVal\vm\$vm\manifest\")) { mkdir "C:\ManVal\vm\$vm\manifest\" } - - <# - $clip = $clip -join "`n" -split "@@" - $inputObj = $inputObj[1..(($inputObj| Select-String "ManifestVersion" -SimpleMatch).LineNumber -1)] | where {$_ -notmatch "marked this conversation as resolved."} - - $FilePath = "$manifestFolder\$File" - Write-Host "Writing $($inputObj.length) lines to $FilePath" - Out-File -FilePath $FilePath -InputObject $inputObj - #Bugfix to catch package identifier appended to last line of last file. - $fileContents = (Get-Content $FilePath) -#> - - $YamlValue = (Get-YamlValue ManifestType $clip) - switch ($YamlValue) { - 'Locale' { - $Locale = (Get-YamlValue PackageLocale $clip) - $FileName = "$FileName.locale.$Locale" - } - 'defaultLocale' { - $Locale = (Get-YamlValue PackageLocale $clip) - $FileName = "$FileName.locale.$Locale" - } - 'installer' { - $FileName = "$FileName.installer" - } - 'version' { - Validate-Package -vm $vm -NoFiles - } - Default { - Write-Host 'Error: Bad ManifestType' - } - } - $FilePath = "$MainFolder\vm\$vm\manifest\$FileName.yaml" - Write-Host "Writing $($clip.length) lines to $FilePath" - $clip -replace '0New version: ', '0' -replace '0Add version: ', '0' -replace '0Add ', '0' -replace '0New ', '0' | Out-File $FilePath -} - -Function Get-SecondMatch { - param( - $c = (Get-Clipboard), - $depth = 1 - ) - for ($l = $depth; $l -lt $c.length; $l++) { - $current = ($c[$l] -split ': ')[0] - $prev = ($c[$l - $depth] -split ': ')[0] - #write-host "Current $current prev $prev" - if ($current -ne $prev) { $c[$l - $depth] } - } - for ($j = $depth ; $j -gt 0; $j--) { - $c[ - $j] - } -} - -Function Test-Hash { - param( - $FileName, - $hashVar = (Get-Clipboard), - [Switch]$noDelete - ) - $out = (Get-FileHash $FileName) -match $hashVar - switch ($noDelete) { - $true { - } - $false { - Remove-FileIfExists $FileName - } - } - switch ($out) { - $true { - Write-Host $out -ForegroundColor green - } - $false { - Write-Host $out -ForegroundColor red - } - } -} - -Function Find-Hash ($FileName) { - $hash = (Get-FileHash $FileName).hash; - $hash | clip; - Get-Clipboard - Test-Hash $file $hash -} - -Function Check-ManifestFile { - param( - [Parameter(mandatory = $true)][int]$vm, - $filePath = "$runPath\$vm\manifest\Package.yaml" - ) - $fileContents = Get-Content $filePath - if ($fileContents[-1] -ne '0') { - $fileContents[-1] = ($fileContents[-1] -split '.0')[0] + '.0' - Write-Host "Writing $($fileContents.length) lines to $filePath" - $fileContents | Out-File $filePath - } -} - -Function Rotate-TrackerVMLogs { - $logYesterDate = (Get-Date -f dd) - 1 - Move-Item "$writeFolder\logs\$logYesterDate" "$MainFolder\logs\$logYesterDate" -} - -Function Get-AutoValLogs { - param( - $clip = (Get-Clipboard), - $DestinationPath = "$MainFolder\Installers", - $LogPath = "$DestinationPath\InstallationVerificationLogs\", - $ZipPath = "$DestinationPath\InstallationVerificationLogs.zip", - [switch]$Force - ) - Get-Process *photosapp* | Stop-Process - $AutoValbuild = (($clip -split '=')[1]) - Start-Process "https://dev.azure.com/ms/ed6a5dfa-6e7f-413b-842c-8305dd9e89e6/_apis/build/builds/$AutoValbuild/artifacts?artifactName=InstallationVerificationLogs&api-version=7.0&%24format=zip" - Start-Sleep 2; - if (!(Test-Path $ZipPath) -AND !$Force) { - Write-Host 'No logs.' - 'No logs.' | clip - #break; - } - Remove-Item $LogPath -Recurse -ErrorAction Ignore - Expand-Archive $ZipPath -DestinationPath $DestinationPath; - #Get-ChildItem "$MainFolder\Installers\Install*" | Remove-Item -Recurse #Clean out installer logs - Remove-Item "$DestinationPath\InstallationVerificationLogs.zip" - ( - (Get-ChildItem $LogPath).FullName | ForEach-Object { - if ($_ -match 'png') { Start-Process $_ } - Get-Content $_ | Where-Object { - $_ -match '[[]FAIL[]]' -OR $_ -match 'fail' -OR $_ -match 'error' -OR $_ -match 'exception' } - } - ) -split "`n" | Select-Object -Unique | clip; - Get-CannedResponse AutoValEnd -} - -#Inject dependencies -Function Add-ValidationData { - param( - [Parameter(mandatory = $true)][int]$vm, - $Data = 'Microsoft.VCRedist.2015+.x64', - $VMFolder = "$MainFolder\vm\$vm", - $manifestFolder = "$VMFolder\manifest", - $FilePath = "$manifestFolder\Package.installer.yaml", - $fileContents = (Get-Content $FilePath), - $Selector = 'Installers:', - $offset = 1, - #[switch]$Force, - $lineNo = (($fileContents | Select-String $Selector -List).LineNumber - $offset), - $fileInsert = "Dependencies:`n PackageDependencies:`n - PackageIdentifier: $Data", - $fileOutput = ($fileContents[0..($lineNo - 1)] + $fileInsert + $fileContents[$lineNo..($fileContents.length)]) - ) - #This is an example of a "sideways wrapper". Bubble all parameters up 1 line as variables. Bubble all variables as high as possible in the function. Bubble variables at the top into parameters. Watch all the flexibility that unlocks. - #if ($Force) { - Write-Host "Writing $($fileContents.length) lines to $FilePath" - Out-File -FilePath $FilePath -InputObject $fileOutput - Set-Status 'Revert' $VM; - #} else { - #Write-Host "We don't support dependencies. You may be looking for: `n $fileInsert" - #} -} - -Function Add-InstallerSwitch { - param( - [Parameter(mandatory = $true)][int]$vm, - $Data = '/qn', - $Selector = 'ManifestType:', - [ValidateSet('EXE', 'MSI', 'MSIX', 'Inno', 'Nullsoft', 'InstallShield')] - [string]$InstallerType - - ) - switch ($InstallerType) { - 'MSIX' { - $Data = '/quiet' - } - 'Inno' { - $Data = '/SILENT' - } - 'Nullsoft' { - $Data = '/S' - } - 'InstallShield' { - $Data = '/s' #or -s - } - } - $fileInsert = " InstallerSwitches:`n Silent: $Data" - Add-ValidationData $vm -Data $Data -Selector $Selector -fileInsert $fileInsert #-Force -} - -#@wingetbot waivers -Function Get-CannedResponse { - param( - [ValidateSet('AppFail', 'Arguments', 'ArgumentsHelp', 'AutomationBlock', 'AutoValEnd', 'AutoValFail', 'Dependency32', 'Dependency64', 'Dependency', 'Drivers', 'EULA', 'GenevaValPipe', 'GenevaWingetbotMention', 'IcMValidationEphemeral', 'IcMValidationEvery', 'IcMValidationFirst', 'IcMValidationStale', 'IcMWaiverCommit', 'InstallerFail', 'InstallerNotUnattended', 'InstallerUrlBad', 'ManValFail', 'NoCause', 'NoExe', 'NoRecentActivity', 'NotGoodFit', 'Only64bit', 'PackageFail', 'Paths', 'PendingAttendedInstaller', 'Unattended', 'Unavailable', 'UrlBad')] - [string]$Response, - $UserInput = (Get-Clipboard), - $Dependency64 = 'Microsoft.VCRedist.2015+.x64', - $Dependency32 = 'Microsoft.VCRedist.2015+.x86', - [int]$TruncateAfterLine = 10 - ) - [string]$Username = '@' + $UserInput.replace(' ', '') + ',' - switch ($Response) { - 'AppFail' { - $out = "Hi $Username`n`nThe application installed normally, but gave an error instead of launching:`n" - } - 'Arguments' { - if (($UserInput -split "`n").length -gt $TruncateAfterLine) { - $UserInput = ($UserInput -split "`n")[0..$TruncateAfterLine] - $UserInput += '...' - } - $out = "This package is expecting arguments:`n```````n" - $UserInput | ForEach-Object { $out += $_ + "`n" } - $out += "`n``````" - } - 'ArgumentsHelp' { - if (($UserInput -split "`n").length -gt $TruncateAfterLine) { - $UserInput = ($UserInput -split "`n")[0..$TruncateAfterLine] - $UserInput += '...' - } - $out = "This package runs with no output when given no arguments. Providing `-help` yields:`n```````n" - $UserInput | ForEach-Object { $out += $_ + "`n" } - $out += "`n``````" - } - 'AutomationBlock' { - $out = 'This might be due to a network block of data centers, to prevent automated downloads.' - } - 'AutoValEnd' { - $out = "Automatic Validation ended with:`n> $UserInput" - } - 'AutoValFail' { - $out = "Automatic Validation failed with:`n> $UserInput" - } - 'Dependency' { - $out = "Hi $Username`n`nThe package installs normally, but requires ``$Dependency64`` (or ``$Dependency32``) to run:`n`nPending:`n* https://github.com/microsoft/winget-cli/issues/163" - } - 'Dependency32' { - $out = "Hi $Username`n`nThe package installs normally, but requires ``$Dependency32`` to run:`n`nPending:`n* https://github.com/microsoft/winget-cli/issues/163" - } - 'Dependency64' { - $out = "Hi $Username`n`nThe package installs normally, but requires ``$Dependency64`` to run:`n`nPending:`n* https://github.com/microsoft/winget-cli/issues/163" - } - 'Drivers' { - $out = "Hi $Username`n`nThe installation is unattended, but installs a driver which isn't unattended:`n`Unfortunately, installer switches are not usually provided for this situation. Are you aware of an installer switch to have the driver silently install as well?" - } - 'EULA' { - $out = "Hi $Username`n`nThe installation isn't unattended It requires the user to accept an EULA:`n`nIs there an installer switch to accept this and have it install automatically?" - } - 'InstallerFail' { - $out = "Hi $Username`n`nThe installer did not complete:`n" - } - 'InstallerNotUnattended' { - $out = "Pending:`n* https://github.com/microsoft/winget-cli/issues/910" - } - 'InstallerUrlBad' { - $out = "Hi $Username`n`nI'm not able to find this InstallerUrl from the PackageUrl. Is there another page on the developer's site that has a link to the package?" - } - 'UrlBad' { - $out = "Hi $Username`n`nI'm not able to find this InstallerUrl from the PackageUrl. Is there another page on the developer's site that has a link to the package?" - } - 'ManValFail' { - $out = "Manual Validation failed with:`n> $UserInput" - } - 'NoCause' { - $out = "I'm not able to find the cause for this error. It installs and runs normally on a Windows 11 VM." - } - 'NoExe' { - $out = "Hi $Username`n`nThe installer doesn't appear to install any executables, only supporting files:`n`nIs this expected?" - } - 'NoRecentActivity' { - $out = 'Closing with reason: No recent activity.' - } - 'NotGoodFit' { - $out = "Hi $Username`n`nUnfortunately, this package might not be a good fit for inclusion into the WinGet public manifests. Please consider using a local manifest (`WinGet install --manifest C:\path\to\manifest\files\`) for local installations. " - } - 'Only64bit' { - $out = "Hi $Username`n`nValidation failed on the x86 package, and x86 packages are validated on 32-bit OSes. So this might be a 64-bit package." - } - 'PackageFail' { - $out = "Hi $Username`n`nThe package installs normally, but fails to run:`n" - } - 'Paths' { - $out = 'Please update file name and path to match this change.' - } - 'PendingAttendedInstaller' { - $out = "Pending:`n* https://github.com/microsoft/winget-cli/issues/910" - } - 'Unattended' { - $out = "Hi $Username`n`nThe installation isn't unattended:`n`nIs there an installer switch to bypass this and have it install automatically?" - } - 'Unavailable' { - $out = "Hi $Username`n`nThe installer isn't available from the publisher's website:" - } - } - $out | clip -} - -#Clipboard -Function Get-PRNumbers { - param( - $out = (Get-Clipboard), - [switch]$noclip, - $dashboardPRRegex = '[0-9]{5,6}[:]' - ) - $out = $out | Select-String $dashboardPRRegex | Sort-Object -Descending - if ($noclip) { - $out - } else { - $out | clip - } -} - -Function Sort-Clipboard { - param( - $out = (Get-Clipboard) - ) - $out | Sort-Object | clip -} - -Function Open-AllURLs { - param( - $out = (Get-Clipboard) - ) - $out = $out -split ' ' - $out = $out | Select-String "`^http" - $out = $out | Select-String -NotMatch '[.]exe$' - $out = $out | Select-String -NotMatch '[.]msi$' - $out = $out | Select-String -NotMatch '[.]zip$' - $out = $out | Sort-Object -Unique - $out = $out | ForEach-Object { Start-Process $_ } -} - -Function Remove-FileIfExists { - param( - $FilePath, - [switch]$remake - ) - if (Test-Path $FilePath) { Remove-Item $FilePath -Recurse } - if ($remake) { mkdir $FilePath } -} - -Function Get-YamlValue { - param( - [string]$StringName, - $clip = (Get-Clipboard) - ) - ((($clip | Select-String $StringName) -split ': ')[1] -split '#')[0] -} - -Function Test-Admin { - if (![bool](([System.Security.Principal.WindowsIdentity]::GetCurrent()).groups -match 'S-1-5-32-544')) { Write-Host 'Try elevating your session.'; break } -} - -Function Find-InstallerSets { - param( - $clip = (Get-Clipboard), - $delineator = '- ' - ) - $optionsLine = ($clip | Select-String 'Installers:').LineNumber - $manifestLine = ($clip | Select-String 'ManifestType:').LineNumber[0] - 2 - $InstallerSection = $clip[$optionsLine..$manifestLIne] - $setCount = ($InstallerSection | Select-String $delineator).count - Write-Host "$setCount sets detected:" - $InstallerSection -split $delineator | ForEach-Object { - $inputVar = $_ - Write-Host $inputVar - - #Arch, Scope, Locale - $out = @{}; - $inputVar -split "`n" | ForEach-Object { - $key, $value = ($_ -split ': ' -replace ' ', ''); - $out[$key] = $value - } - $out['ProductCode'] - $out.Remove('') - } -} diff --git a/Tools/ManualValidationProfile.ps1 b/Tools/ManualValidationProfile.ps1 deleted file mode 100644 index 0835af59699d9..0000000000000 --- a/Tools/ManualValidationProfile.ps1 +++ /dev/null @@ -1,73 +0,0 @@ -$VM = 0 -$build = 119 -$ipconfig = (ipconfig) -$remoteIP = ([ipaddress](($ipconfig | Select-String 'Default Gateway') -split ': ')[1]).IPAddressToString -#$remoteIP = ([ipaddress](($ipconfig[($ipconfig | select-string "vEthernet").LineNumber..$ipconfig.length] | select-string "IPv4 Address") -split ": ")[1]).IPAddressToString -Write-Host "VM$VM with remoteIP $remoteIP version $build" - -$MainFolder = "\\$remoteIP\ManVal" -$homePath = 'C:\Users\User\Desktop' -Set-Location $homePath - -$runPath = "$MainFolder\vm\$VM" -$writeFolder = "\\$remoteIP\write" -$statusFile = "$writeFolder\status.csv" -$SharedFolder = $writeFolder - -if ($VM -eq 0) { - $VM = (Get-Content "$MainFolder\vmcounter.txt") - 1 -} -"`$VM = $VM" | Out-File $profile -(Get-Content "\\$remoteIP\ManVal\vm\0\profile.ps1")[1..999] | Out-File $profile -Append - -Function Send-SharedError { - param( - $c = (Get-Clipboard) - ) - Write-Host "Writing $($c.length) lines." - $c | Out-File "$writeFolder\err.txt" - Set-Status 'Complete' -} -Function Set-Status { - param( - [ValidateSet('Prevalidation', 'CheckpointComplete', 'Checkpointing', 'CheckpointReady', 'Completing', 'Complete', 'Disgenerate', 'Generating', 'Prescan', 'Ready', 'Rebooting', 'Regenerate', 'Restoring', 'Revert', 'Scanning', 'Setup', 'SetupComplete', 'Starting', 'Updating', 'Installing', 'ValidationComplete')] - $Status = 'Complete' - ) - Write-Host "Setting $vm state $Status" - $out = Get-Content $statusFile | ConvertFrom-Csv - ($out | Where-Object { $_.vm -match $VM }).status = $Status - $out | ConvertTo-Csv | Out-File $statusFile -} -Function Run-Validation { - param( - $fileName = 'cmds.ps1' - ) - Copy-Item $runPath\$fileName $homePath\$fileName - & $homePath\$fileName -} - -Function Get-Status { - param( - [int]$vm, - [ValidateSet('Prevalidation', 'CheckpointComplete', 'Checkpointing', 'CheckpointReady', 'Completing', 'Complete', 'Disgenerate', 'Generating', 'Prescan', 'Ready', 'Rebooting', 'Regenerate', 'Restoring', 'Revert', 'Scanning', 'Setup', 'SetupComplete', 'Starting', 'Updating', 'Installing', 'ValidationComplete')] - $Status, - $out = (Get-Content $StatusFile | ConvertFrom-Csv | Where-Object { $_.status -notmatch 'ImagePark' }) - ) - if ($vm) { - $out = ($out | Where-Object { $_.vm -eq $vm }).status - } - if ($Status) { - $out = ($out | Where-Object { $_.status -eq $Status }).vm - } - $out -} - -Function Update-Stuff { - Set-Status 'Updating' - WinGet upgrade --all --include-pinned --disable-interactivity - Update-MpSignature - Start-MpScan - Set-Status 'CheckpointReady' - Shutdown -R -T 05 -} - diff --git a/Tools/PRWatcher.ps1 b/Tools/PRWatcher.ps1 deleted file mode 100644 index 9e6fce9be9a62..0000000000000 --- a/Tools/PRWatcher.ps1 +++ /dev/null @@ -1,1333 +0,0 @@ -#Copyright 2023 Microsoft Corporation -#Author: Stephen Gillie -#Title: PRWatcher v0.8.2 -#Created: 2/15/2023 -#Updated: 6/27/2023 -#Notes: Streamlines WinGet-pkgs manifest PR moderator approval by watching the clipboard - copy a PR title to your clipboard, and Watch-PRTitles attempts to parse the PackageIdentifier and version number, gathers the version from WinGet, and gives feedback in your Powershell console. Also outputs valid titles to a logging file. Freeing moderators to focus on approving and helping. -#Update log: -#0.8 Update PackageIdentifier and PackageVersion detection by starting with the manifest file. -#0.8.1 Update WinGet version in Create-Sandbox. -#0.8.2 Make new version detection of semantic type. - -$CountrySet = 'Default', 'Warm', 'Cool', 'Random', 'Afghanistan', 'Albania', 'Algeria', 'American Samoa', 'Andorra', 'Angola', 'Anguilla', 'Antigua And Barbuda', 'Argentina', 'Armenia', 'Aruba', 'Australia', 'Austria', 'Azerbaijan', 'Bahamas', 'Bahrain', 'Bangladesh', 'Barbados', 'Belarus', 'Belgium', 'Belize', 'Benin', 'Bermuda', 'Bhutan', 'Bolivia', 'Bosnia And Herzegovina', 'Botswana', 'Bouvet Island', 'Brazil', 'Brunei Darussalam', 'Bulgaria', 'Burkina Faso', 'Burundi', 'Cabo Verde', 'Cambodia', 'Cameroon', 'Canada', 'Central African Republic', 'Chad', 'Chile', 'China', 'Colombia', 'Comoros', 'Cook Islands', 'Costa Rica', 'Croatia', 'Cuba', 'CuraΓö£┬║ao', 'Cyprus', 'Czechia', "CΓö£Γöñte D'Ivoire", 'Democratic Republic Of The Congo', 'Denmark', 'Djibouti', 'Dominica', 'Dominican Republic', 'Ecuador', 'Egypt', 'El Salvador', 'Equatorial Guinea', 'Eritrea', 'Estonia', 'Eswatini', 'Ethiopia', 'Fiji', 'Finland', 'France', 'French Polynesia', 'Gabon', 'Gambia', 'Georgia', 'Germany', 'Ghana', 'Greece', 'Grenada', 'Guatemala', 'Guinea', 'Guinea-Bissau', 'Guyana', 'Haiti', 'Holy See (Vatican City State)', 'Honduras', 'Hungary', 'Iceland', 'India', 'Indonesia', 'Iran', 'Iraq', 'Ireland', 'Israel', 'Italy', 'Jamaica', 'Japan', 'Jordan', 'Kazakhstan', 'Kenya', 'Kiribati', 'Kuwait', 'Kyrgyzstan', 'Laos', 'Latvia', 'Lebanon', 'Lesotho', 'Liberia', 'Libya', 'Liechtenstein', 'Lithuania', 'Luxembourg', 'Madagascar', 'Malawi', 'Malaysia', 'Maldives', 'Mali', 'Malta', 'Marshall Islands', 'Mauritania', 'Mauritius', 'Mexico', 'Micronesia', 'Moldova', 'Monaco', 'Mongolia', 'Montenegro', 'Morocco', 'Mozambique', 'Myanmar', 'Namibia', 'Nauru', 'Nepal', 'Netherlands', 'New Zealand', 'Nicaragua', 'Niger', 'Nigeria', 'Niue', 'Norfolk Island', 'North Korea', 'North Macedonia', 'Norway', 'Oman', 'Pakistan', 'Palau', 'Palestine', 'Panama', 'Papua New Guinea', 'Paraguay', 'Peru', 'Philippines', 'Pitcairn Islands', 'Poland', 'Portugal', 'Qatar', 'Republic Of The Congo', 'Romania', 'Russian Federation', 'Rwanda', 'Saint Kitts And Nevis', 'Saint Lucia', 'Saint Vincent And The Grenadines', 'Samoa', 'San Marino', 'Sao Tome And Principe', 'Saudi Arabia', 'Senegal', 'Serbia', 'Seychelles', 'Sierra Leone', 'Singapore', 'Slovakia', 'Slovenia', 'Solomon Islands', 'Somalia', 'South Africa', 'South Korea', 'South Sudan', 'Spain', 'Sri Lanka', 'Sudan', 'Suriname', 'Sweden', 'Switzerland', 'Syrian Arab Republic', 'Tajikistan', 'Tanzania', ' United Republic Of', 'Thailand', 'Togo', 'Tonga', 'Trinidad And Tobago', 'Tunisia', 'Turkey', 'Turkmenistan', 'Tuvalu', 'Uganda', 'Ukraine', 'United Arab Emirates', 'United Kingdom', 'United States', 'Uruguay', 'Uzbekistan', 'Vanuatu', 'Venezuela', 'Vietnam', 'Yemen', 'Zambia', 'Zimbabwe', 'Åland Islands' - -Function Watch-PRTitles { - [CmdletBinding()] - param( - [switch]$noNew, - $LogFile = '.\PR.txt', - $AuthFile = '.\Auth.csv', - [ValidateSet('Default', 'Warm', 'Cool', 'Random', 'Afghanistan', 'Albania', 'Algeria', 'American Samoa', 'Andorra', 'Angola', 'Anguilla', 'Antigua And Barbuda', 'Argentina', 'Armenia', 'Aruba', 'Australia', 'Austria', 'Azerbaijan', 'Bahamas', 'Bahrain', 'Bangladesh', 'Barbados', 'Belarus', 'Belgium', 'Belize', 'Benin', 'Bermuda', 'Bhutan', 'Bolivia', 'Bosnia And Herzegovina', 'Botswana', 'Bouvet Island', 'Brazil', 'Brunei Darussalam', 'Bulgaria', 'Burkina Faso', 'Burundi', 'Cabo Verde', 'Cambodia', 'Cameroon', 'Canada', 'Central African Republic', 'Chad', 'Chile', 'China', 'Colombia', 'Comoros', 'Cook Islands', 'Costa Rica', 'Croatia', 'Cuba', 'CuraΓö£┬║ao', 'Cyprus', 'Czechia', "CΓö£Γöñte D'Ivoire", 'Democratic Republic Of The Congo', 'Denmark', 'Djibouti', 'Dominica', 'Dominican Republic', 'Ecuador', 'Egypt', 'El Salvador', 'Equatorial Guinea', 'Eritrea', 'Estonia', 'Eswatini', 'Ethiopia', 'Fiji', 'Finland', 'France', 'French Polynesia', 'Gabon', 'Gambia', 'Georgia', 'Germany', 'Ghana', 'Greece', 'Grenada', 'Guatemala', 'Guinea', 'Guinea-Bissau', 'Guyana', 'Haiti', 'Holy See (Vatican City State)', 'Honduras', 'Hungary', 'Iceland', 'India', 'Indonesia', 'Iran', 'Iraq', 'Ireland', 'Israel', 'Italy', 'Jamaica', 'Japan', 'Jordan', 'Kazakhstan', 'Kenya', 'Kiribati', 'Kuwait', 'Kyrgyzstan', 'Laos', 'Latvia', 'Lebanon', 'Lesotho', 'Liberia', 'Libya', 'Liechtenstein', 'Lithuania', 'Luxembourg', 'Madagascar', 'Malawi', 'Malaysia', 'Maldives', 'Mali', 'Malta', 'Marshall Islands', 'Mauritania', 'Mauritius', 'Mexico', 'Micronesia', 'Moldova', 'Monaco', 'Mongolia', 'Montenegro', 'Morocco', 'Mozambique', 'Myanmar', 'Namibia', 'Nauru', 'Nepal', 'Netherlands', 'New Zealand', 'Nicaragua', 'Niger', 'Nigeria', 'Niue', 'Norfolk Island', 'North Korea', 'North Macedonia', 'Norway', 'Oman', 'Pakistan', 'Palau', 'Palestine', 'Panama', 'Papua New Guinea', 'Paraguay', 'Peru', 'Philippines', 'Pitcairn Islands', 'Poland', 'Portugal', 'Qatar', 'Republic Of The Congo', 'Romania', 'Russian Federation', 'Rwanda', 'Saint Kitts And Nevis', 'Saint Lucia', 'Saint Vincent And The Grenadines', 'Samoa', 'San Marino', 'Sao Tome And Principe', 'Saudi Arabia', 'Senegal', 'Serbia', 'Seychelles', 'Sierra Leone', 'Singapore', 'Slovakia', 'Slovenia', 'Solomon Islands', 'Somalia', 'South Africa', 'South Korea', 'South Sudan', 'Spain', 'Sri Lanka', 'Sudan', 'Suriname', 'Sweden', 'Switzerland', 'Syrian Arab Republic', 'Tajikistan', 'Tanzania, United Republic Of', 'Thailand', 'Togo', 'Tonga', 'Trinidad And Tobago', 'Tunisia', 'Turkey', 'Turkmenistan', 'Tuvalu', 'Uganda', 'Ukraine', 'United Arab Emirates', 'United Kingdom', 'United States', 'Uruguay', 'Uzbekistan', 'Vanuatu', 'Venezuela', 'Vietnam', 'Yemen', 'Zambia', 'Zimbabwe', 'Åland Islands')] - $Chromatic = 'Default', - $oldclip = '', - $hashPRRegex = '[#][0-9]{5,6}', - $AuthList = '' - ) - if (Test-Path $AuthFile) { - $AuthList = Get-Content $AuthFile | ConvertFrom-Csv - Write-Host "Using Auth file $AuthFile" -f green - } else { - Write-Host "Auth file $AuthFile not found!" -f red - } - Write-Host "Loaded $($AuthList.count) Auth file entries." - while ($true) { - $clip2 = (Get-Clipboard) - $clip = $clip2 | Select-String '[#][0-9]{5,6}$'; - #$clip = ((Get-Clipboard) -join "") -replace "PackageVersion:"," version" | select-string -NotMatch "^[c][:]"; - if ($clip) { - if (Compare-Object $clip $oldclip) { - if ((Get-Command Get-Status).name) { - (Get-Status | Where-Object { $_.status -eq 'ValidationComplete' }) - } - $timevar = (Get-Date -Format T) + ':' - $copyClip = $false - $noRecord = $false - - $title = $clip -split ': ' - if ($title[1]) { - $title = $title[1] -split ' ' - } else { - $title = $title -split ' ' - } - #Split the title by spaces. Try extracting the version location as the next item after the word "version", and if that fails, use the 2nd to the last item, then 3rd to last, and 4th to last. For some reason almost everyone puts the version number as the last item, and GitHub appends the PR number. - $prVerLoc = ($title | Select-String 'version').linenumber - #Version is on the line before the line number, and this set indexes with 1 - but the following array indexes with 0, so the value is automatically transformed by the index mismatch. - try { - [System.Version]$prVersion = (($clip2 | Select-String 'PackageVersion')[0] -split ': ')[1] -replace "'", '' -replace '"', '' - } catch { - try { - [System.Version]$prVersion = (($clip2 | Select-String 'PackageVersion')[1] -split ': ')[1] - } catch { - if ($null -ne $prVerLoc) { - try { - [System.Version]$prVersion = $title[$prVerLoc] - } catch { - [string]$prVersion = $title[$prVerLoc] - } - } else { - #Otherwise we have to go hunting for the version number. - try { - [System.Version]$prVersion = $title[-1] - } catch { - try { - [System.Version]$prVersion = $title[-2] - } catch { - try { - [System.Version]$prVersion = $title[-3] - } catch { - try { - [System.Version]$prVersion = $title[-4] - } catch { - #If it's not a semantic version, guess that it's the 2nd to last, based on the above logic. - [string]$prVersion = $title[-2] - } - } - } - }; #end try - }; #end try - }; #end if null - }; #end try - $validColor = 'green' - $invalidColor = 'red' - $cautionColor = 'yellow' - - Switch ($Chromatic) { - #Color schemes, to accomodate needs and also add variety. - 'Default' { - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Warm' { - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Cool' { - $validColor = 'Green' - $invalidColor = 'Blue' - $cautionColor = 'Cyan' - } - 'Random' { - $Chromatic = ($CountrySet | Get-Random) - Write-Host "Using CountrySet $Chromatic" -f green - } - #https://www.flagpictures.com/countries/flag-colors/ - 'Afghanistan' { - $validColor = 'DarkGray' - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Albania' { - $validColor = 'DarkGray' - $invalidColor = 'Red' - } - 'Algeria' { - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'American Samoa' { - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - } - 'Andorra' { - $validColor = 'Blue' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Angola' { - $validColor = 'DarkGray' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Anguilla' { - $invalidColor = 'Blue' - $cautionColor = 'White' - } - 'Antigua And Barbuda' { - $invalidColor = 'Red' - $validColor = 'DarkGray' - $invalidColor = 'Blue' - $validColor = 'White' - $cautionColor = 'Yellow' - } - 'Argentina' { - $validColor = 'White' - $cautionColor = 'Cyan' - } - 'Armenia' { - $validColor = 'Blue' - $invalidColor = 'Red' - $cautionColor = 'DarkYellow' - } - 'Aruba' { - $validColor = 'Blue' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Australia' { - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - } - 'Austria' { - $validColor = 'White' - $invalidColor = 'Red' - } - 'Azerbaijan' { - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'Cyan' - } - 'Bahamas' { - $validColor = 'DarkGray' - $invalidColor = 'Cyan' - $cautionColor = 'Yellow' - } - 'Bahrain' { - $validColor = 'White' - $invalidColor = 'Red' - } - 'Bangladesh' { - $validColor = 'Green' - $invalidColor = 'Red' - } - 'Barbados' { - $validColor = 'DarkGray' - $invalidColor = 'Blue' - $cautionColor = 'DarkYellow' - } - 'Belarus' { - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Belgium' { - $validColor = 'DarkGray' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Belize' { - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - } - 'Benin' { - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Bermuda' { - $invalidColor = 'Red' - } - 'Bhutan' { - $validColor = 'DarkRed' - $invalidColor = 'DarkYellow' - $cautionColor = 'White' - } - 'Bolivia' { - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Bosnia And Herzegovina' { - $invalidColor = 'Blue' - $validColor = 'White' - $cautionColor = 'Yellow' - } - 'Botswana' { - $validColor = 'DarkGray' - $invalidColor = 'White' - $cautionColor = 'Cyan' - } - 'Bouvet Island' { - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - } - 'Brazil' { - $validColor = 'Green' - $invalidColor = 'Blue' - $cautionColor = 'DarkYellow' - } - 'Brunei Darussalam' { - $validColor = 'DarkGray' - $invalidColor = 'Red' - $validColor = 'White' - $cautionColor = 'Yellow' - } - 'Bulgaria' { - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Burkina Faso' { - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Burundi' { - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Cabo Verde' { - $validColor = 'White' - $invalidColor = 'DarkYellow' - $invalidColor = 'Red' - $cautionColor = 'Blue' - } - 'Cambodia' { - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - } - 'Cameroon' { - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Canada' { - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Central African Republic' { - $validColor = 'Green' - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - $cautionColor = 'Yellow' - } - 'Chad' { - $validColor = 'Blue' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Chile' { - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - } - 'China' { - $invalidColor = 'Red' - $cautionColor = 'DarkYellow' - } - 'Colombia' { - $nvalidColor = 'Blue' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Comoros' { - $validColor = 'Green' - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - $cautionColor = 'Yellow' - } - 'Cook Islands' { - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - } - 'Costa Rica' { - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - } - 'Croatia' { - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - } - 'Cuba' { - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - } - 'Curaçao' { - $validColor = 'White' - $invalidColor = 'Blue' - $cautionColor = 'Yellow' - } - 'Cyprus' { - $validColor = 'White' - $invalidColor = 'Blue' - } - 'Czechia' { - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - } - "Côte D'Ivoire" { - $validColor = 'Green' - $invalidColor = 'DarkYellow' - $cautionColor = 'White' - } - 'Democratic Republic Of The Congo' { - $validColor = 'Blue' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Denmark' { - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Djibouti' { - $validColor = 'Green' - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Cyan' - } - 'Dominica' { - $validColor = 'Green' - $validColor = 'DarkGray' - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Dominican Republic' { - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - } - 'Ecuador' { - $validColor = 'Blue' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Egypt' { - $validColor = 'DarkGray' - $invalidColor = 'DarkYellow' - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'El Salvador' { - $validColor = 'White' - $invalidColor = 'DarkYellow' - $cautionColor = 'Blue' - } - 'Equatorial Guinea' { - $validColor = 'Green' - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - } - 'Eritrea' { - $validColor = 'Green' - $validColor = 'Blue' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Estonia' { - $validColor = 'DarkGray' - $invalidColor = 'Blue' - $cautionColor = 'White' - } - 'Eswatini' { - $validColor = 'DarkGray' - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - $cautionColor = 'Yellow' - } - 'Ethiopia' { - $validColor = 'Green' - $validColor = 'Blue' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Fiji' { - $validColor = 'White' - $validColor = 'DarkBlue' - $invalidColor = 'DarkYellow' - $invalidColor = 'Red' - $cautionColor = 'Cyan' - } - 'Finland' { - $validColor = 'White' - $invalidColor = 'Blue' - } - 'France' { - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - } - 'French Polynesia' { - $validColor = 'White' - $invalidColor = 'Red' - $invalidColor = 'Blue' - $cautionColor = 'DarkYellow' - } - 'Gabon' { - $validColor = 'Green' - $invalidColor = 'Blue' - $cautionColor = 'Yellow' - } - 'Gambia' { - $validColor = 'Green' - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - } - 'Georgia' { - $validColor = 'White' - $invalidColor = 'Red' - } - 'Germany' { - $validColor = 'DarkGray' - $invalidColor = 'Red' - $cautionColor = 'DarkYellow' - } - 'Ghana' { - $validColor = 'DarkGray' - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Greece' { - $validColor = 'White' - $invalidColor = 'Blue' - } - 'Grenada' { - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Guatemala' { - $validColor = 'White' - $invalidColor = 'Blue' - } - 'Guinea' { - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Guinea-Bissau' { - $validColor = 'DarkGray' - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Guyana' { - $validColor = 'DarkGray' - $validColor = 'Green' - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Haiti' { - $validColor = 'Blue' - $invalidColor = 'Red' - } - 'Holy See (Vatican City State)' { - $validColor = 'White' - $cautionColor = 'Yellow' - } - 'Honduras' { - $validColor = 'White' - $invalidColor = 'Blue' - } - 'Hong Kong' { - $validColor = 'White' - $invalidColor = 'Red' - } - 'Hungary' { - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Iceland' { - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - } - 'India' { - $validColor = 'Green' - $validColor = 'White' - $invalidColor = 'Blue' - $cautionColor = 'DarkYellow' - } - 'Indonesia' { - $validColor = 'White' - $invalidColor = 'Red' - } - 'Iran' { - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Iraq' { - $invalidColor = 'Red' - $validColor = 'DarkGray' - $validColor = 'Green' - $cautionColor = 'White' - } - 'Ireland' { - $validColor = 'Green' - $invalidColor = 'Blue' - } - 'Israel' { - $validColor = 'White' - $invalidColor = 'Blue' - } - 'Italy' { - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Jamaica' { - $validColor = 'Green' - $invalidColor = 'DarkGray' - $cautionColor = 'DarkYellow' - } - 'Japan' { - $validColor = 'White' - $invalidColor = 'Red' - } - 'Jordan' { - $validColor = 'DarkGray' - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Kazakhstan' { - $cautionColor = 'Yellow' - $invalidColor = 'Blue' - } - 'Kenya' { - $validColor = 'DarkGray' - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Kiribati' { - $validColor = 'White' - $invalidColor = 'Red' - $invalidColor = 'Blue' - $cautionColor = 'DarkYellow' - } - 'Kuwait' { - $validColor = 'Green' - $validColor = 'DarkGray' - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Kyrgyzstan' { - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Laos' { - $validColor = 'Blue' - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Latvia' { - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Lebanon' { - $invalidColor = 'Red' - $validColor = 'Green' - $cautionColor = 'White' - } - 'Lesotho' { - $validColor = 'DarkGray' - $validColor = 'Green' - $invalidColor = 'Blue' - $cautionColor = 'White' - } - 'Liberia' { - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - } - 'Libya' { - $validColor = 'DarkGray' - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Liechtenstein' { - $validColor = 'Blue' - $invalidColor = 'Red' - } - 'Lithuania' { - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Luxembourg' { - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Cyan' - } - 'Macao' { - $validColor = 'Green' - $cautionColor = 'White' - } - 'Madagascar' { - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Malawi' { - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'DarkGray' - } - 'Malaysia' { - $validColor = 'White' - $invalidColor = 'Red' - $invalidColor = 'DarkBlue' - $cautionColor = 'Yellow' - } - 'Maldives' { - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Mali' { - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Malta' { - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Marshall Islands' { - $invalidColor = 'Blue' - $invalidColor = 'DarkYellow' - $cautionColor = 'White' - } - 'Mauritania' { - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Mauritius' { - $validColor = 'Green' - $invalidColor = 'Red' - $invalidColor = 'Blue' - $cautionColor = 'Yellow' - } - 'Mexico' { - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Micronesia' { - $invalidColor = 'Blue' - $cautionColor = 'White' - } - 'Moldova' { - $validColor = 'Blue' - $invalidColor = 'DarkYellow' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Monaco' { - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Mongolia' { - $validColor = 'Blue' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Montenegro' { - $invalidColor = 'Red' - $cautionColor = 'DarkYellow' - } - 'Morocco' { - $validColor = 'Green' - $invalidColor = 'Red' - } - 'Mozambique' { - $validColor = 'DarkGray' - $validColor = 'Green' - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Myanmar' { - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - $cautionColor = 'White' - } - 'Namibia' { - $validColor = 'Green' - $validColor = 'White' - $invalidColor = 'Blue' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Nauru' { - $invalidColor = 'Blue' - $validColor = 'White' - $cautionColor = 'Yellow' - } - 'Nepal' { - $validColor = 'DarkRed' - $invalidColor = 'Blue' - $cautionColor = 'White' - } - 'Netherlands' { - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - } - 'New Zealand' { - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - } - 'Nicaragua' { - $invalidColor = 'Blue' - $cautionColor = 'White' - } - 'Niger' { - $validColor = 'Green' - $cautionColor = 'White' - $cautionColor = 'DarkYellow' - } - 'Nigeria' { - $validColor = 'Green' - $cautionColor = 'White' - } - 'Niue' { - $validColor = 'DarkYellow' - } - 'Norfolk Island' { - $validColor = 'Green' - $cautionColor = 'White' - } - 'North Korea' { - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - } - 'North Macedonia' { - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Norway' { - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - } - 'Oman' { - $invalidColor = 'Red' - $validColor = 'Green' - $cautionColor = 'White' - } - 'Pakistan' { - $validColor = 'Green' - $cautionColor = 'White' - } - 'Palau' { - $cautionColor = 'Yellow' - $invalidColor = 'Blue' - } - 'Palestine' { - $validColor = 'DarkGray' - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Panama' { - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - } - 'Papua New Guinea' { - $validColor = 'DarkGray' - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Paraguay' { - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - } - 'Peru' { - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Philippines' { - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - $cautionColor = 'Yellow' - } - 'Pitcairn Islands' { - $validColor = 'Green' - $validColor = 'DarkGray' - $validColor = 'White' - $invalidColor = 'Red' - $invalidColor = 'Blue' - $cautionColor = 'Brown' - $cautionColor = 'Yellow' - } - 'Poland' { - $validColor = 'White' - $invalidColor = 'Red' - } - 'Portugal' { - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Qatar' { - $validColor = 'DarkRed' - $cautionColor = 'White' - } - 'Republic Of The Congo' { - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Romania' { - $validColor = 'Blue' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Russian Federation' { - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - } - 'Rwanda' { - $validColor = 'Green' - $invalidColor = 'Cyan' - $cautionColor = 'Yellow' - } - 'Saint Kitts And Nevis' { - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Saint Lucia' { - $validColor = 'DarkGray' - $validColor = 'White' - $invalidColor = 'Cyan' - $cautionColor = 'Yellow' - } - 'Saint Vincent And The Grenadines' { - $validColor = 'Green' - $invalidColor = 'Blue' - $cautionColor = 'Yellow' - } - 'Samoa' { - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - } - 'San Marino' { - $validColor = 'White' - $cautionColor = 'Cyan' - } - 'Sao Tome And Principe' { - $validColor = 'Green' - $validColor = 'DarkGray' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Saudi Arabia' { - $validColor = 'Green' - $cautionColor = 'White' - } - 'Senegal' { - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Serbia' { - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - } - 'Seychelles' { - $validColor = 'Green' - $validColor = 'White' - $invalidColor = 'Blue' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Sierra Leone' { - $validColor = 'Green' - $invalidColor = 'Blue' - $cautionColor = 'White' - } - 'Singapore' { - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Slovakia' { - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - } - 'Slovenia' { - $validColor = 'DarkGray' - $validColor = 'Green' - $invalidColor = 'Red' - $invalidColor = 'Blue' - $cautionColor = 'DarkYellow' - $cautionColor = 'White' - } - 'Solomon Islands' { - $validColor = 'Olive Green' - $invalidColor = 'Blue' - $cautionColor = 'Yellow' - } - 'Somalia' { - $invalidColor = 'Blue' - $cautionColor = 'White' - } - 'South Africa' { - $validColor = 'DarkGray' - $validColor = 'Green' - $invalidColor = 'Red' - $invalidColor = 'Blue' - $invalidColor = 'DarkYellow' - $cautionColor = 'White' - } - 'South Korea' { - $validColor = 'White' - $validColor = 'DarkGray' - $invalidColor = 'Red' - $cautionColor = 'Blue' - } - 'South Sudan' { - $validColor = 'DarkGray' - $validColor = 'Green' - $validColor = 'White' - $invalidColor = 'Blue' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Spain' { - $invalidColor = 'Red' - $invalidColor = 'DarkYellow' - } - 'Sri Lanka' { - $validColor = 'Green' - $invalidColor = 'DarkRed' - $cautionColor = 'DarkYellow' - } - 'Sudan' { - $validColor = 'DarkGray' - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Suriname' { - $validColor = 'DarkYellow' - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Sweden' { - $validColor = 'Blue' - $invalidColor = 'DarkYellow' - } - 'Switzerland' { - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Syrian Arab Republic' { - $validColor = 'DarkGray' - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Tajikistan' { - $validColor = 'DarkYellow' - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Tanzania, United Republic Of' { - $validColor = 'Green' - $validColor = 'DarkGray' - $invalidColor = 'Blue' - $cautionColor = 'Yellow' - } - 'Thailand' { - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - } - 'Togo' { - $validColor = 'Green' - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Tonga' { - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Trinidad And Tobago' { - $validColor = 'DarkGray' - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Tunisia' { - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Turkey' { - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Turkmenistan' { - $validColor = 'Green' - $cautionColor = 'White' - } - 'Tuvalu' { - $validColor = 'DarkBlue' - $invalidColor = 'DarkYellow' - $invalidColor = 'Red' - $cautionColor = 'Cyan' - $cautionColor = 'White' - } - 'Uganda' { - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - $cautionColor = 'Yellow' - } - 'Ukraine' { - $invalidColor = 'Blue' - $invalidColor = 'DarkYellow' - } - 'United Arab Emirates' { - $validColor = 'DarkGray' - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'United Kingdom' { - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - } - 'United States' { - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Blue' - } - 'Uruguay' { - $invalidColor = 'Blue' - $cautionColor = 'White' - } - 'Uzbekistan' { - $validColor = 'Green' - $invalidColor = 'Blue' - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Vanuatu' { - $validColor = 'DarkGray' - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Venezuela' { - $validColor = 'Blue' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Vietnam' { - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Yemen' { - $validColor = 'DarkGray' - $invalidColor = 'Red' - $cautionColor = 'White' - } - 'Zambia' { - $validColor = 'Green' - $validColor = 'DarkGray' - $invalidColor = 'Red' - $cautionColor = 'DarkYellow' - } - 'Zimbabwe' { - $validColor = 'Green' - $validColor = 'DarkGray' - $validColor = 'White' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - 'Åland Islands' { - $validColor = 'Blue' - $invalidColor = 'Red' - $cautionColor = 'DarkYellow' - } - Default { - $validColor = 'Green' - $invalidColor = 'Red' - $cautionColor = 'Yellow' - } - }; #end Switch Chromatic - - #Get the PackageIdentifier out of the PR title, and alert if it matches the auth list. - $PackageIdentifier = '' - try { - $PackageIdentifier = (($clip2 | Select-String 'PackageIdentifier')[0] -split ': ')[1] - } catch { - $PackageIdentifier = (Get-CleanClip $clip); - } - $AuthMatch = $AuthList.PackageIdentifier -match $PackageIdentifier - if ($AuthMatch) { - $AuthListLine = $AuthList | Where-Object { $_.PackageIdentifier -match $AuthMatch } - $strictness = $AuthListLine.strictness | Sort-Object -Unique - $AuthAccount = $AuthListLine.account | Sort-Object -Unique - $strictColor = '' - if ($strictness -eq 'must') { - $strictColor = $invalidColor - } else { - $strictColor = $cautionColor - } - Write-Host -NoNewline ' = = = = = = Submitter ' - Write-Host -NoNewline -f $strictColor "$strictness" - Write-Host -NoNewline ' match ' - Write-Host -NoNewline -f $strictColor "$AuthAccount" - Write-Host ' = = = = = = ' - } - - $WinGetOutput = Search-WinGetManifest $PackageIdentifier - - $wgLine = ($WinGetOutput | Select-String " $PackageIdentifier ") - try { - try { - [System.Version]$ManifestVersion = ($wgLine -replace '\s+', ' ' -split ' ')[-2] - } catch { - [string]$ManifestVersion = ($wgLine -replace '\s+', ' ' -split ' ')[-2] - } - } catch { - $ManifestVersion = '' - } - - $titlejoin = ($title -join ' ') - if (($titlejoin -match 'Automatic deletion') -OR ($titlejoin -match 'Remove')) { - $validColor, $invalidColor = $invalidColor, $validColor #Swapping variable values. - $copyClip = $true - } - - if ($PackageIdentifier -eq 'Added') { - Write-Host -f $invalidColor "$timevar Error reading package identifier" - $noRecord = $true - } elseif ($WinGetOutput -eq 'No package found matching input criteria.') { - if ($noNew) { - $noRecord = $true - } else { - if ($title[-1] -match $hashPRRegex) { - if ((Get-Command Validate-Package).name) { - Validate-Package - } else { - Create-Sandbox ($title[-1] -replace '#', '') - } - }; #end if noNew - }; #end if PackageIdentifier - Write-Host -f $invalidColor $timevar ($PackageIdentifier) $WinGetOutput - } elseif ($null -eq $prVersion -or '' -eq $prVersion) { - $noRecord = $true - Write-Host -f $invalidColor "$timevar Error reading PR version" - } elseif ($ManifestVersion -eq 'Unknown') { - Write-Host -f $invalidColor "$timevar Error reading WinGet version" - } elseif ($ManifestVersion -eq 'input') { - $noRecord = $true - Write-Host $WinGetOutput - } elseif ($null -eq $ManifestVersion) { - Write-Host $WinGetOutput - } elseif ($ManifestVersion -eq 'add-watermark') { - $noRecord = $true - Write-Host -f $invalidColor "$timevar Error reading package identifier" - } elseif ($prVersion -gt $ManifestVersion) { - Write-Host -f $validColor "$timevar $PackageIdentifier prVersion $prVersion is greater than ManifestVersion $ManifestVersion" - } elseif ($prVersion -lt $ManifestVersion) { - $outMsg = "$timevar $PackageIdentifier prVersion $prVersion is less than ManifestVersion $ManifestVersion" - Write-Host -f $invalidColor $outMsg - if ($copyClip) { - $outMsg | clip - $clip = $outMsg - $oldclip = $outMsg - } - } elseif ($prVersion -eq $ManifestVersion) { - Write-Host -f $cautionColor "$timevar $PackageIdentifier prVersion $prVersion is equal to ManifestVersion $ManifestVersion" - } else { - $WinGetOutput - }; - $oldclip = $clip - if ($noRecord -eq $false) { - if ($clip.length -le 128) { - $clip = $clip -join '' | Where-Object { $_ -match $hashPRRegex } - #Write-Debug "Output $clip to $LogFile" - $clip | Out-File $LogFile -Append - } else { - Write-Host -f $cautionColor "$timevar Item length greater than 128 characters." - } ; #end if clip - }; #end if noRecord - }; #end if Compare-Object - }; #end if clip - Start-Sleep 1 - } -} - -#Utility functions -#Extract package name from clipboard contents -Function Get-CleanClip { - [CmdletBinding()] - param( - $out = (Get-Clipboard) - ) - $out = $out -replace '_v', ' ' - $out = $out -join '' #removes accidental line breaks - #$DebugPreference = 'Continue' - $i = 0 - #Write-Debug "$i time: $out";$i++ - $out = $out -replace 'Add ' - $out = $out -replace 'Automatic deletion of ' - $out = $out -replace 'Automatic update of ' - $out = $out -replace 'Remove ' - $out = $out -replace 'Update ' - #Write-Debug "$i time: $out";$i++ - if ($out.contains(': ')) { - $out = ($out -split ': ')[1] - } - #Write-Debug "$i time: $out";$i++ - - $out = ($out -split ' ')[0] - #Write-Debug "$i time: $out";$i++ - $out -} - -#Minimize output for automation -Function Search-WinGetManifest ($term) { - $out = WinGet search $term --disable-interactivity | Where-Object { $_ -notmatch 'Γûê' } - return $out -} - -#Terminates any current sandbox and makes a new one. -Function Create-Sandbox { - param( - [string]$PRNumber = (Get-Clipboard) - ) - $FirstLetter = $PRNumber[0] - if ($FirstLetter -eq '#') { - [string]$PRNumber = $PRNumber[1..$PRNumber.length] -join '' - } - Get-Process *sandbox* | ForEach-Object { Stop-Process $_ } - Get-Process *wingetautomator* | ForEach-Object { Stop-Process $_ } - $version = '1.6.1573-preview' - $process = "wingetautomator://install?pull_request_number=$PRNumber&winget_cli_version=v$version&watch=yes" - Start-Process $process -} diff --git a/Tools/YamlCreate.ps1 b/Tools/YamlCreate.ps1 index 41498e5fcfdc8..7b93af93fe878 100644 --- a/Tools/YamlCreate.ps1 +++ b/Tools/YamlCreate.ps1 @@ -27,6 +27,8 @@ Justification = 'Ths function is a wrapper which calls the singular Read-AppsAndFeaturesEntry as many times as necessary. It corresponds exactly to a pluralized manifest field')] [Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSUseSingularNouns', '', Scope = 'Function', Target = '*Metadata', Justification = 'Metadata is used as a mass noun and is therefore singular in the cases used in this script')] +[Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSUseSingularNouns', '', Scope = 'Function', Target = 'Get-OffsetBytes', + Justification = 'Ths function both consumes and outputs an array of bytes. The pluralized name is required to adequately describe the functions purpose')] Param ( @@ -159,22 +161,68 @@ if (Get-Command 'git' -ErrorAction SilentlyContinue) { } } -# Installs `powershell-yaml` as a dependency for parsing yaml content -if (-not(Get-Module -ListAvailable -Name powershell-yaml)) { +#### +# Description: Ensures a PowerShell module is installed +# Inputs: PowerShell Module Name +# Outputs: None +#### +function Initialize-Module { + param ( + [Parameter(Mandatory = $true)] + [String] $Name, + [Parameter(Mandatory = $false)] + [String[]] $Cmdlet, + [Parameter(Mandatory = $false)] + [String[]] $Function + ) + + $NuGetVersion = (Get-PackageProvider).Where({ $_.Name -ceq 'NuGet' }).Version + $installedModules = Get-Module -ListAvailable -Name $Name + + # Ensure NuGet is installed and up to date + # If the NuGet Package Provider is not installed, the version will be null, which will satisfy the conditional + if ($NuGetVersion -lt $script:NuGetMinimumVersion) { + try { + Write-Debug 'NuGet Package Provider was not found, it will be installed' + # This might fail if the user is not an administrator, so catch the errors + Install-PackageProvider -Name NuGet -MinimumVersion $script:NuGetMinimumVersion.ToString() -Force -Scope CurrentUser + } catch { + Write-Error 'Could not install the NuGet package provider which is required to install script dependencies.' -ErrorAction Continue + Write-Error "You may be able to resolve this by running: Install-PackageProvider -Name NuGet -MinimumVersion $($script:NuGetMinimumVersion.ToString())" + } + } + + Write-Verbose "Ensuring PowerShell module '$Name' is installed" + if ($installedModules) { + # If the module is installed, attempt to upgrade it + Write-Debug "Found $Name in installed modules" + } else { + # If the module is not installed, attempt to install it + try { + Install-Module -Name $Name -Force -Repository PSGallery -Scope CurrentUser + } catch { + Write-Error "$Name was unable to be installed successfully" + } + } + # Verify the module is installed and present try { - Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force - Install-Module -Name powershell-yaml -Force -Repository PSGallery -Scope CurrentUser - } catch { - # If there was an exception while installing powershell-yaml, pass it as an InternalException for further debugging - throw [UnmetDependencyException]::new("'powershell-yaml' unable to be installed successfully", $_.Exception) - } finally { - # Double check that it was installed properly - if (-not(Get-Module -ListAvailable -Name powershell-yaml)) { - throw [UnmetDependencyException]::new("'powershell-yaml' is not found") + if (!(Get-Module -Name $Name)) { + $importParameters = @{Name = $Name; Scope = 'Local' } # Force the module to be imported into the local scope to avoid changing the global scope + if ($PSBoundParameters.ContainsKey('Cmdlet')) { $importParameters['Cmdlet'] = $Cmdlet } + if ($PSBoundParameters.ContainsKey('Function')) { $importParameters['Function'] = $Function } + + Import-Module @importParameters } + } catch { + Write-Error "$Name was found in available modules, but could not be imported" } } +$script:NuGetMinimumVersion = [System.Version]::Parse('2.8.5.201') +Initialize-Module -Name 'powershell-yaml' # Used for parsing YAML files +Initialize-Module -Name 'MSI' -Cmdlet @('Get-MSITable'; 'Get-MSIProperty') # Used for fetching MSI Properties +Initialize-Module -Name 'NtObjectManager' -Function @('Get-Win32ModuleResource'; 'Get-Win32ModuleManifest') # Used for checking installer type inno + # Set settings directory on basis of Operating System $script:SettingsPath = Join-Path $(if ([System.Environment]::OSVersion.Platform -match 'Win') { $env:LOCALAPPDATA } else { $env:HOME + '/.config' } ) -ChildPath 'YamlCreate' # Check for settings directory and create it if none exists @@ -190,7 +238,7 @@ if ($Settings) { exit } -$ScriptHeader = '# Created with YamlCreate.ps1 v2.4.6' +$ScriptHeader = '# Created with YamlCreate.ps1 v2.4.7' $ManifestVersion = '1.10.0' $PSDefaultParameterValues = @{ '*:Encoding' = 'UTF8' } $Utf8NoBomEncoding = New-Object System.Text.UTF8Encoding $False @@ -203,6 +251,7 @@ if (-not ([System.Environment]::OSVersion.Platform -match 'Win')) { $env:TEMP = $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 = @() $_wingetVersion = 1.0.0 $_appInstallerVersion = (Get-AppxPackage Microsoft.DesktopAppInstaller).version @@ -334,6 +383,26 @@ if ($remoteUpstreamUrl -and $remoteUpstreamUrl -ne $wingetUpstream) { 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" } + } +} + # Since this script changes the UI Calling Culture, a clean exit should set it back to the user preference # If the remote upstream was changed, that should also be set back Function Invoke-CleanExit { @@ -342,6 +411,8 @@ Function Invoke-CleanExit { git remote set-url upstream $remoteUpstreamUrl } + Invoke-FileCleanup -FilePaths $script:CleanupPaths + Write-Host [Threading.Thread]::CurrentThread.CurrentUICulture = $callingUICulture [Threading.Thread]::CurrentThread.CurrentCulture = $callingCulture @@ -562,265 +633,368 @@ Function Get-InstallerFile { return $_OutFile } -Function Get-MSIProperty { - Param +Function Get-UserSavePreference { + switch ($ScriptSettings.SaveToTemporaryFolder) { + 'always' { $_Preference = '0' } + 'never' { $_Preference = '1' } + 'manual' { $_Preference = '2' } + default { + $_menu = @{ + entries = @('[Y] Yes'; '*[N] No'; '[M] Manually Enter SHA256') + Prompt = 'Do you want to save the files to the Temp folder?' + DefaultString = 'N' + } + switch ( Invoke-KeypressMenu -Prompt $_menu['Prompt'] -Entries $_menu['Entries'] -DefaultString $_menu['DefaultString']) { + 'Y' { $_Preference = '0' } + 'N' { $_Preference = '1' } + 'M' { $_Preference = '2' } + default { $_Preference = '1' } + } + } + } + return $_Preference +} + +#### +# Description: Gets the specified bytes from a byte array +# Inputs: Array of Bytes, Integer offset, Integer Length +# Outputs: Array of bytes +#### +function Get-OffsetBytes { + param ( + [Parameter(Mandatory = $true)] + [byte[]] $ByteArray, + [Parameter(Mandatory = $true)] + [int] $Offset, + [Parameter(Mandatory = $true)] + [int] $Length, + [Parameter(Mandatory = $false)] + [bool] $LittleEndian = $false # Bool instead of a switch for use with other functions + ) + + if ($Offset -gt $ByteArray.Length) { return @() } # Prevent null exceptions + $Start = if ($LittleEndian) { $Offset + $Length - 1 } else { $Offset } + $End = if ($LittleEndian) { $Offset } else { $Offset + $Length - 1 } + return $ByteArray[$Start..$End] +} + +#### +# Description: Gets the PE Section Table of a file +# Inputs: Path to File +# Outputs: Array of Object if valid PE file, null otherwise +#### +function Get-PESectionTable { + # TODO: Switch to using FileReader to be able to seek through the file instead of reading from the start + param ( [Parameter(Mandatory = $true)] - [string] $MSIPath, + [String] $Path + ) + # https://learn.microsoft.com/en-us/windows/win32/debug/pe-format + # The first 64 bytes of the file contain the DOS header. The first two bytes are the "MZ" signature, and the 60th byte contains the offset to the PE header. + $DOSHeader = Get-Content -Path $Path -AsByteStream -TotalCount 64 -WarningAction 'SilentlyContinue' + $MZSignature = Get-OffsetBytes -ByteArray $DOSHeader -Offset 0 -Length 2 + if (Compare-Object -ReferenceObject $([byte[]](0x4D, 0x5A)) -DifferenceObject $MZSignature ) { return $null } # The MZ signature is invalid + $PESignatureOffsetBytes = Get-OffsetBytes -ByteArray $DOSHeader -Offset 60 -Length 4 + $PESignatureOffset = [BitConverter]::ToInt32($PESignatureOffsetBytes, 0) + + # These are known sizes + $PESignatureSize = 4 # Bytes + $COFFHeaderSize = 20 # Bytes + $SectionTableEntrySize = 40 # Bytes + + # Read 24 bytes past the PE header offset to get the PE Signature and COFF header + $RawBytes = Get-Content -Path $Path -AsByteStream -TotalCount $($PESignatureOffset + $PESignatureSize + $COFFHeaderSize) -WarningAction 'SilentlyContinue' + $PESignature = Get-OffsetBytes -ByteArray $RawBytes -Offset $PESignatureOffset -Length $PESignatureSize + if (Compare-Object -ReferenceObject $([byte[]](0x50, 0x45, 0x00, 0x00)) -DifferenceObject $PESignature ) { return $null } # The PE header is invalid if it is not 'PE\0\0' + + # Parse out information from the header + $COFFHeaderBytes = Get-OffsetBytes -ByteArray $RawBytes -Offset $($PESignatureOffset + $PESignatureSize) -Length $COFFHeaderSize + # $MachineTypeBytes = Get-OffsetBytes -ByteArray $COFFHeaderBytes -Offset 0 -Length 2 + $NumberOfSectionsBytes = Get-OffsetBytes -ByteArray $COFFHeaderBytes -Offset 2 -Length 2 + # $TimeDateStampBytes = Get-OffsetBytes -ByteArray $COFFHeaderBytes -Offset 4 -Length 4 + # $PointerToSymbolTableBytes = Get-OffsetBytes -ByteArray $COFFHeaderBytes -Offset 8 -Length 4 + # $NumberOfSymbolsBytes = Get-OffsetBytes -ByteArray $COFFHeaderBytes -Offset 12 -Length 4 + $SizeOfOptionalHeaderBytes = Get-OffsetBytes -ByteArray $COFFHeaderBytes -Offset 16 -Length 2 + # $HeaderCharacteristicsBytes = Get-OffsetBytes -ByteArray $COFFHeaderBytes -Offset 18 -Length 2 + + # Convert the data into real numbers + $NumberOfSections = [BitConverter]::ToInt16($NumberOfSectionsBytes, 0) + # $TimeDateStamp = [BitConverter]::ToInt32($TimeDateStampBytes, 0) + # $SymbolTableOffset = [BitConverter]::ToInt32($PointerToSymbolTableBytes, 0) + # $NumberOfSymbols = [BitConverter]::ToInt32($NumberOfSymbolsBytes, 0) + $OptionalHeaderSize = [BitConverter]::ToInt16($SizeOfOptionalHeaderBytes, 0) + + # Read the section table from the file + $SectionTableStart = $PESignatureOffset + $PESignatureSize + $COFFHeaderSize + $OptionalHeaderSize + $SectionTableLength = $NumberOfSections * $SectionTableEntrySize + $RawBytes = Get-Content -Path $Path -AsByteStream -TotalCount $($SectionTableStart + $SectionTableLength) -WarningAction 'SilentlyContinue' + $SectionTableContents = Get-OffsetBytes -ByteArray $RawBytes -Offset $SectionTableStart -Length $SectionTableLength + + $SectionData = @(); + # Parse each of the sections + foreach ($Section in 0..$($NumberOfSections - 1)) { + $SectionTableEntry = Get-OffsetBytes -ByteArray $SectionTableContents -Offset ($Section * $SectionTableEntrySize) -Length $SectionTableEntrySize + + # Get the raw bytes + $SectionNameBytes = Get-OffsetBytes -ByteArray $SectionTableEntry -Offset 0 -Length 8 + $VirtualSizeBytes = Get-OffsetBytes -ByteArray $SectionTableEntry -Offset 8 -Length 4 + $VirtualAddressBytes = Get-OffsetBytes -ByteArray $SectionTableEntry -Offset 12 -Length 4 + $SizeOfRawDataBytes = Get-OffsetBytes -ByteArray $SectionTableEntry -Offset 16 -Length 4 + $PointerToRawDataBytes = Get-OffsetBytes -ByteArray $SectionTableEntry -Offset 20 -Length 4 + $PointerToRelocationsBytes = Get-OffsetBytes -ByteArray $SectionTableEntry -Offset 24 -Length 4 + $PointerToLineNumbersBytes = Get-OffsetBytes -ByteArray $SectionTableEntry -Offset 28 -Length 4 + $NumberOfRelocationsBytes = Get-OffsetBytes -ByteArray $SectionTableEntry -Offset 32 -Length 2 + $NumberOfLineNumbersBytes = Get-OffsetBytes -ByteArray $SectionTableEntry -Offset 34 -Length 2 + $SectionCharacteristicsBytes = Get-OffsetBytes -ByteArray $SectionTableEntry -Offset 36 -Length 4 + + # Convert the data into real values + $SectionName = [Text.Encoding]::UTF8.GetString($SectionNameBytes) + $VirtualSize = [BitConverter]::ToInt32($VirtualSizeBytes, 0) + $VirtualAddressOffset = [BitConverter]::ToInt32($VirtualAddressBytes, 0) + $SizeOfRawData = [BitConverter]::ToInt32($SizeOfRawDataBytes, 0) + $RawDataOffset = [BitConverter]::ToInt32($PointerToRawDataBytes, 0) + $RelocationsOffset = [BitConverter]::ToInt32($PointerToRelocationsBytes, 0) + $LineNumbersOffset = [BitConverter]::ToInt32($PointerToLineNumbersBytes, 0) + $NumberOfRelocations = [BitConverter]::ToInt16($NumberOfRelocationsBytes, 0) + $NumberOfLineNumbers = [BitConverter]::ToInt16($NumberOfLineNumbersBytes, 0) + + # Build the object + $SectionEntry = [PSCustomObject]@{ + SectionName = $SectionName + SectionNameBytes = $SectionNameBytes + VirtualSize = $VirtualSize + VirtualAddressOffset = $VirtualAddressOffset + SizeOfRawData = $SizeOfRawData + RawDataOffset = $RawDataOffset + RelocationsOffset = $RelocationsOffset + LineNumbersOffset = $LineNumbersOffset + NumberOfRelocations = $NumberOfRelocations + NumberOfLineNumbers = $NumberOfLineNumbers + SectionCharacteristicsBytes = $SectionCharacteristicsBytes + } + # Add the section to the output + $SectionData += $SectionEntry + } + + return $SectionData +} + +#### +# Description: Checks if a file is a Zip archive +# Inputs: Path to File +# Outputs: Boolean. True if file is a zip file, false otherwise +# Note: This function does not differentiate between other Zipped installer types. Any specific types like MSIX still result in an Zip file. +# Use this function with care, as it may return overly broad results. +#### +function Test-IsZip { + param + ( [Parameter(Mandatory = $true)] - [string] $Parameter + [String] $Path ) - try { - $windowsInstaller = New-Object -com WindowsInstaller.Installer - $database = $windowsInstaller.GetType().InvokeMember('OpenDatabase', 'InvokeMethod', $null, $windowsInstaller, @($MSIPath, 0)) - $view = $database.GetType().InvokeMember('OpenView', 'InvokeMethod', $null, $database, ("SELECT Value FROM Property WHERE Property = '$Parameter'")) - $view.GetType().InvokeMember('Execute', 'InvokeMethod', $null, $view, $null) - $record = $view.GetType().InvokeMember('Fetch', 'InvokeMethod', $null, $view, $null) - $outputObject = $($record.GetType().InvokeMember('StringData', 'GetProperty', $null, $record, 1)) - $view.GetType().InvokeMember('Close', 'InvokeMethod', $null, $view, $null) - [System.Runtime.InteropServices.Marshal]::FinalReleaseComObject($view) - [System.Runtime.InteropServices.Marshal]::FinalReleaseComObject($database) - [System.Runtime.InteropServices.Marshal]::FinalReleaseComObject($windowsInstaller) - [System.GC]::Collect() - [System.GC]::WaitForPendingFinalizers() - return $outputObject - } catch { - Write-Error -Message $_.ToString() - break - } + + # The first 4 bytes of zip files are the same. + # It isn't worth setting up a FileStream and BinaryReader here since only the first 4 bytes are being checked + # https://pkware.cachefly.net/webdocs/casestudies/APPNOTE.TXT section 4.3.7 + $ZipHeader = Get-Content -Path $Path -AsByteStream -TotalCount 4 -WarningAction 'SilentlyContinue' + return $null -eq $(Compare-Object -ReferenceObject $([byte[]](0x50, 0x4B, 0x03, 0x04)) -DifferenceObject $ZipHeader) } -Function Get-ItemMetadata { - Param +#### +# Description: Checks if a file is an MSIX or APPX archive +# Inputs: Path to File +# Outputs: Boolean. True if file is a MSIX or APPX file, false otherwise +#### +function Test-IsMsix { + param ( [Parameter(Mandatory = $true)] - [string] $FilePath + [String] $Path ) - try { - $MetaDataObject = [ordered] @{} - $FileInformation = (Get-Item $FilePath) - $ShellApplication = New-Object -ComObject Shell.Application - $ShellFolder = $ShellApplication.Namespace($FileInformation.Directory.FullName) - $ShellFile = $ShellFolder.ParseName($FileInformation.Name) - $MetaDataProperties = [ordered] @{} - 0..400 | ForEach-Object -Process { - $DataValue = $ShellFolder.GetDetailsOf($null, $_) - $PropertyValue = (Get-Culture).TextInfo.ToTitleCase($DataValue.Trim()).Replace(' ', '') - if ($PropertyValue -ne '') { - $MetaDataProperties["$_"] = $PropertyValue - } - } - foreach ($Key in $MetaDataProperties.Keys) { - $Property = $MetaDataProperties[$Key] - $Value = $ShellFolder.GetDetailsOf($ShellFile, [int] $Key) - if ($Property -in 'Attributes', 'Folder', 'Type', 'SpaceFree', 'TotalSize', 'SpaceUsed') { - continue - } - If (($null -ne $Value) -and ($Value -ne '')) { - $MetaDataObject["$Property"] = $Value - } - } - [void][System.Runtime.InteropServices.Marshal]::FinalReleaseComObject($ShellFile) - [void][System.Runtime.InteropServices.Marshal]::FinalReleaseComObject($ShellFolder) - [void][System.Runtime.InteropServices.Marshal]::FinalReleaseComObject($ShellApplication) - [System.GC]::Collect() - [System.GC]::WaitForPendingFinalizers() - return $MetaDataObject - } catch { - Write-Error -Message $_.ToString() - break + if (!(Test-IsZip -Path $Path)) { return $false } # MSIX are really just a special type of Zip file + Write-Debug 'Extracting file contents as a zip archive' + $FileObject = Get-Item -Path $Path + $temporaryFilePath = Join-Path -Path $env:TEMP -ChildPath "$($FileObject.BaseName).zip" # Expand-Archive only works if the file is a zip file + $expandedArchivePath = Join-Path -Path $env:TEMP -ChildPath $(New-Guid) + Copy-Item -Path $Path -Destination $temporaryFilePath + Expand-Archive -Path $temporaryFilePath -DestinationPath $expandedArchivePath + Write-Debug 'Marking extracted files for cleanup' + $script:CleanupPaths += @($temporaryFilePath; $expandedArchivePath) + + # There are a few different indicators that a package can be installed with MSIX technology, look for any of these file names + $msixIndicators = @('AppxSignature.p7x'; 'AppxManifest.xml'; 'AppxBundleManifest.xml', 'AppxBlockMap.xml') + foreach ($filename in $msixIndicators) { + if (Get-ChildItem -Path $expandedArchivePath -Recurse -Depth 3 -Filter $filename) { return $true } # If any of the files is found, it is an msix } + return $false } -function Get-Property ($Object, $PropertyName, [object[]]$ArgumentList) { - return $Object.GetType().InvokeMember($PropertyName, 'Public, Instance, GetProperty', $null, $Object, $ArgumentList) +#### +# Description: Checks if a file is an MSI installer +# Inputs: Path to File +# Outputs: Boolean. True if file is an MSI installer, false otherwise +# Note: This function does not differentiate between MSI installer types. Any specific packagers like WIX still result in an MSI installer. +# Use this function with care, as it may return overly broad results. +#### +function Test-IsMsi { + param + ( + [Parameter(Mandatory = $true)] + [String] $Path + ) + + $MsiTables = Get-MSITable -Path $Path -ErrorAction SilentlyContinue + if ($MsiTables) { return $true } + # If the table names can't be parsed, it is not an MSI + return $false } -Function Get-MsiDatabase { - Param +#### +# Description: Checks if a file is a WIX installer +# Inputs: Path to File +# Outputs: Boolean. True if file is a WIX installer, false otherwise +#### +function Test-IsWix { + param ( [Parameter(Mandatory = $true)] - [string] $FilePath + [String] $Path ) - Write-Host -ForegroundColor 'Yellow' 'Reading Installer Database. This may take some time. . .' - $windowsInstaller = New-Object -com WindowsInstaller.Installer - $MSI = $windowsInstaller.OpenDatabase($FilePath, 0) - $_TablesView = $MSI.OpenView('select * from _Tables') - $_TablesView.Execute() - $_Database = @{} - do { - $_Table = $_TablesView.Fetch() - if ($_Table) { - $_TableName = Get-Property -Object $_Table -PropertyName StringData -ArgumentList 1 - $_Database["$_TableName"] = @{} - } - } while ($_Table) - [void][System.Runtime.InteropServices.Marshal]::FinalReleaseComObject($_TablesView) - foreach ($_Table in $_Database.Keys) { - # Write-Host $_Table - $_ItemView = $MSI.OpenView("select * from $_Table") - $_ItemView.Execute() - do { - $_Item = $_ItemView.Fetch() - if ($_Item) { - $_ItemValue = $null - $_ItemName = Get-Property -Object $_Item -PropertyName StringData -ArgumentList 1 - if ($_Table -eq 'Property') { $_ItemValue = Get-Property -Object $_Item -PropertyName StringData -ArgumentList 2 -ErrorAction SilentlyContinue } - $_Database.$_Table["$_ItemName"] = $_ItemValue - } - } while ($_Item) - [void][System.Runtime.InteropServices.Marshal]::FinalReleaseComObject($_ItemView) + + $MsiTables = Get-MSITable -Path $Path -ErrorAction SilentlyContinue + if (!$MsiTables) { return $false } # If the table names can't be parsed, it is not an MSI and cannot be WIX + if ($MsiTables.Where({ $_.Table -match 'wix' })) { return $true } # If any of the table names match wix + if (Get-MSIProperty -Path $Path -Property '*wix*' -ErrorAction SilentlyContinue) { return $true } # If any of the keys in the property table match wix + # TODO: Also Check the Metadata of the file +} + +#### +# Description: Checks if a file is a Nullsoft installer +# Inputs: Path to File +# Outputs: Boolean. True if file is a Nullsoft installer, false otherwise +#### +function Test-IsNullsoft { + param + ( + [Parameter(Mandatory = $true)] + [String] $Path + ) + $SectionTable = Get-PESectionTable -Path $Path + if (!$SectionTable) { return $false } # If the section table is null, it is not an EXE and therefore not nullsoft + $LastSection = $SectionTable | Sort-Object -Property RawDataOffset -Descending | Select-Object -First 1 + $PEOverlayOffset = $LastSection.RawDataOffset + $LastSection.SizeOfRawData + + try { + # Set up a file reader + $fileStream = [System.IO.FileStream]::new($Path, [System.IO.FileMode]::Open, [System.IO.FileAccess]::Read) + $binaryReader = [System.IO.BinaryReader]::new($fileStream) + # Read 8 bytes after the offset + $fileStream.Seek($PEOverlayOffset, [System.IO.SeekOrigin]::Begin) | Out-Null + $RawBytes = $binaryReader.ReadBytes(8) + } catch { + # Set to null as a precaution + $RawBytes = $null + } finally { + if ($binaryReader) { $binaryReader.Close() } + if ($fileStream) { $fileStream.Close() } } - [void][System.Runtime.InteropServices.Marshal]::FinalReleaseComObject($MSI) - [void][System.Runtime.InteropServices.Marshal]::FinalReleaseComObject($windowsInstaller) - Write-Host -ForegroundColor 'Yellow' 'Closing Installer Database. . .' - return $_Database + if (!$RawBytes) { return $false } # The bytes couldn't be read + # From the first 8 bytes, get the Nullsoft header bytes + $PresumedHeaderBytes = Get-OffsetBytes -ByteArray $RawBytes -Offset 4 -Length 4 -LittleEndian $true + + # DEADBEEF -or- DEADBEED + # https://sourceforge.net/p/nsis/code/HEAD/tree/NSIS/branches/WIN64/Source/exehead/fileform.h#l222 + if (!(Compare-Object -ReferenceObject $([byte[]](0xDE, 0xAD, 0xBE, 0xEF)) -DifferenceObject $PresumedHeaderBytes)) { return $true } + if (!(Compare-Object -ReferenceObject $([byte[]](0xDE, 0xAD, 0xBE, 0xED)) -DifferenceObject $PresumedHeaderBytes)) { return $true } + return $false } -Function Test-IsWix { - Param +#### +# Description: Checks if a file is an Inno installer +# Inputs: Path to File +# Outputs: Boolean. True if file is an Inno installer, false otherwise +#### +function Test-IsInno { + param ( [Parameter(Mandatory = $true)] - [object] $Database, + [String] $Path + ) + + $Resources = Get-Win32ModuleResource -Path $Path -DontLoadResource -ErrorAction SilentlyContinue + # https://github.com/jrsoftware/issrc/blob/main/Projects/Src/Shared.Struct.pas#L417 + if ($Resources.Name.Value -contains '#11111') { return $true } # If the resource name is #11111, it is an Inno installer + return $false +} + +#### +# Description: Checks if a file is a Burn installer +# Inputs: Path to File +# Outputs: Boolean. True if file is an Burn installer, false otherwise +#### +function Test-IsBurn { + param + ( [Parameter(Mandatory = $true)] - [object] $MetaDataObject + [String] $Path ) - # If any of the table names match wix - if ($Database.Keys -match 'wix') { return $true } - # If any of the keys in the property table match wix - if ($Database.Property.Keys.Where({ $_ -match 'wix' })) { return $true } - # If the CreatedBy value matches wix - if ($MetaDataObject.ProgramName -match 'wix') { return $true } - # If the CreatedBy value matches xml - if ($MetaDataObject.ProgramName -match 'xml') { return $true } + + $SectionTable = Get-PESectionTable -Path $Path + if (!$SectionTable) { return $false } # If the section table is null, it is not an EXE and therefore not Burn + # https://github.com/wixtoolset/wix/blob/main/src/burn/engine/inc/engine.h#L8 + if ($SectionTable.SectionName -contains '.wixburn') { return $true } return $false } -Function Get-ExeType { - Param +#### +# Description: Checks if a file is a font which WinGet can install +# Inputs: Path to File +# Outputs: Boolean. True if file is a supported font, false otherwise +# Note: Supported font formats are TTF, TTC, and OTF +#### +function Test-IsFont { + param ( [Parameter(Mandatory = $true)] [String] $Path ) - $nsis = @( - 77; 90; -112; 0; 3; 0; 0; 0; 4; 0; 0; 0; -1; -1; 0; 0; - -72; 0; 0; 0; 0; 0; 0; 0; 64; 0; 0; 0; 0; 0; 0; 0; 0; 0; - 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; - 0; 0; 0; 0; 0; 0; -40; 0; 0; 0; 14; 31; -70; 14; 0; -76; - 9; -51; 33; -72; 1; 76; -51; 33; 84; 104; 105; 115; - 32; 112; 114; 111; 103; 114; 97; 109; 32; 99; 97; - 110; 110; 111; 116; 32; 98; 101; 32; 114; 117; 110; - 32; 105; 110; 32; 68; 79; 83; 32; 109; 111; 100; - 101; 46; 13; 13; 10; 36; 0; 0; 0; 0; 0; 0; 0; -83; 49; - 8; -127; -23; 80; 102; -46; -23; 80; 102; -46; -23; - 80; 102; -46; 42; 95; 57; -46; -21; 80; 102; -46; - -23; 80; 103; -46; 76; 80; 102; -46; 42; 95; 59; -46; - -26; 80; 102; -46; -67; 115; 86; -46; -29; 80; 102; - -46; 46; 86; 96; -46; -24; 80; 102; -46; 82; 105; 99; - 104; -23; 80; 102; -46; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; - 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 80; 69; 0; 0; 76; - 1; 5; 0 + # https://learn.microsoft.com/en-us/typography/opentype/spec/otff#organization-of-an-opentype-font + $TrueTypeFontSignature = [byte[]](0x00, 0x01, 0x00, 0x00) # The first 4 bytes of a TTF file + $OpenTypeFontSignature = [byte[]](0x4F, 0x54, 0x54, 0x4F) # The first 4 bytes of an OTF file + # https://learn.microsoft.com/en-us/typography/opentype/spec/otff#ttc-header + $TrueTypeCollectionSignature = [byte[]](0x74, 0x74, 0x63, 0x66) # The first 4 bytes of a TTC file + + $FontSignatures = @( + $TrueTypeFontSignature, + $OpenTypeFontSignature, + $TrueTypeCollectionSignature ) - $inno = @( - 77; 90; 80; 0; 2; 0; 0; 0; 4; 0; 15; 0; 255; 255; 0; 0; - 184; 0; 0; 0; 0; 0; 0; 0; 64; 0; 26; 0; 0; 0; 0; 0; 0; 0; - 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; - 0; 0; 0; 0; 0; 0; 0; 1; 0; 0; 186; 16; 0; 14; 31; 180; 9; - 205; 33; 184; 1; 76; 205; 33; 144; 144; 84; 104; 105; - 115; 32; 112; 114; 111; 103; 114; 97; 109; 32; 109; - 117; 115; 116; 32; 98; 101; 32; 114; 117; 110; 32; - 117; 110; 100; 101; 114; 32; 87; 105; 110; 51; 50; - 13; 10; 36; 55; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; - 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; - 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; - 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; - 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; - 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; - 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; - 0; 0; 80; 69; 0; 0; 76; 1; 10; 0) - - $burn = @(46; 119; 105; 120; 98; 117; 114; 110) - - $exeType = $null - - $fileStream = New-Object -TypeName System.IO.FileStream -ArgumentList ($Path, [System.IO.FileMode]::Open, [System.IO.FileAccess]::Read) - $reader = New-Object -TypeName System.IO.BinaryReader -ArgumentList $fileStream - $bytes = $reader.ReadBytes(264) - - if (($bytes[0..223] -join '') -eq ($nsis -join '')) { $exeType = 'nullsoft' } - elseif (($bytes -join '') -eq ($inno -join '')) { $exeType = 'inno' } - # The burn header can appear before a certain point in the binary. Check to see if it's present in the first 264 bytes read - elseif (($bytes -join '') -match ($burn -join '')) { $exeType = 'burn' } - # If the burn header isn't present in the first 264 bytes, scan through the rest of the binary - elseif ($ScriptSettings.IdentifyBurnInstallers -eq 'true') { - $rollingBytes = $bytes[ - $burn.Length..-1] - for ($i = 265; $i -lt ($fileStream.Length, 524280 | Measure-Object -Minimum).Minimum; $i++) { - $rollingBytes = $rollingBytes[1..$rollingBytes.Length] - $rollingBytes += $reader.ReadByte() - if (($rollingBytes -join '') -match ($burn -join '')) { - $exeType = 'burn' - break - } - } - } - - $reader.Dispose() - $fileStream.Dispose() - return $exeType -} + # It isn't worth setting up a FileStream and BinaryReader here since only the first 4 bytes are being checked + $FontHeader = Get-Content -Path $Path -AsByteStream -TotalCount 4 -WarningAction 'SilentlyContinue' + return $($FontSignatures | ForEach-Object { !(Compare-Object -ReferenceObject $_ -DifferenceObject $FontHeader) }) -contains $true # If any of the signatures match, it is a font -Function Get-UserSavePreference { - switch ($ScriptSettings.SaveToTemporaryFolder) { - 'always' { $_Preference = '0' } - 'never' { $_Preference = '1' } - 'manual' { $_Preference = '2' } - default { - $_menu = @{ - entries = @('[Y] Yes'; '*[N] No'; '[M] Manually Enter SHA256') - Prompt = 'Do you want to save the files to the Temp folder?' - DefaultString = 'N' - } - switch ( Invoke-KeypressMenu -Prompt $_menu['Prompt'] -Entries $_menu['Entries'] -DefaultString $_menu['DefaultString']) { - 'Y' { $_Preference = '0' } - 'N' { $_Preference = '1' } - 'M' { $_Preference = '2' } - default { $_Preference = '1' } - } - } - } - return $_Preference } + Function Get-PathInstallerType { - Param + param ( - [Parameter(Mandatory = $true, Position = 0)] - [string] $Path + [Parameter(Mandatory = $true)] + [String] $Path ) - if ($Path -match '\.msix(bundle){0,1}$') { return 'msix' } - if ($Path -match '\.msi$') { - if ([System.Environment]::OSVersion.Platform -match 'Unix') { - $ObjectDatabase = @{} - $ObjectMetadata = @{ - ProgramName = $(([string](file $script:dest) | Select-String -Pattern 'Creating Application.+,').Matches.Value) - } - } else { - $ObjectMetadata = Get-ItemMetadata $Path - $ObjectDatabase = Get-MsiDatabase $Path - } - - if (Test-IsWix -Database $ObjectDatabase -MetaDataObject $ObjectMetadata ) { - return 'wix' - } - return 'msi' - } - if ($Path -match '\.appx(bundle){0,1}$') { return 'appx' } - if ($Path -match '\.zip$') { return 'zip' } - if ($Path -match '\.exe$') { return Get-ExeType($Path) } - + # Ordering is important here due to the specificity achievable by each of the detection methods + # if (Test-IsFont -Path $Path) { return 'font' } # Font detection is not implemented yet + if (Test-IsWix -Path $Path) { return 'wix' } + if (Test-IsMsi -Path $Path) { return 'msi' } + if (Test-IsMsix -Path $Path) { return 'msix' } + if (Test-IsZip -Path $Path) { return 'zip' } + if (Test-IsNullsoft -Path $Path) { return 'nullsoft' } + if (Test-IsInno -Path $Path) { return 'inno' } + if (Test-IsBurn -Path $Path) { return 'burn' } return $null } @@ -1187,7 +1361,7 @@ Function Read-InstallerEntry { Get-UriScope -URI $_Installer['InstallerUrl'] -OutVariable _ | Out-Null if ($_) { $_Installer['Scope'] = $_ | Select-Object -First 1 } if ([System.Environment]::OSVersion.Platform -match 'Win' -and ($script:dest).EndsWith('.msi')) { - $ProductCode = ([string](Get-MSIProperty -MSIPath $script:dest -Parameter 'ProductCode') | Select-String -Pattern '{[A-Z0-9]{8}-([A-Z0-9]{4}-){3}[A-Z0-9]{12}}').Matches.Value + $ProductCode = ([string](Get-MSIProperty -Path $script:dest -Property 'ProductCode') | Select-String -Pattern '{[A-Z0-9]{8}-([A-Z0-9]{4}-){3}[A-Z0-9]{12}}').Matches.Value } elseif ([System.Environment]::OSVersion.Platform -match 'Unix' -and (Get-Item $script:dest).Name.EndsWith('.msi')) { $ProductCode = ([string](file $script:dest) | Select-String -Pattern '{[A-Z0-9]{8}-([A-Z0-9]{4}-){3}[A-Z0-9]{12}}').Matches.Value } @@ -1554,7 +1728,7 @@ Function Read-QuickInstallerEntry { # If a new product code doesn't exist, and the installer isn't an `.exe` file, remove the product code if it exists $MSIProductCode = $null if ([System.Environment]::OSVersion.Platform -match 'Win' -and ($script:dest).EndsWith('.msi')) { - $MSIProductCode = ([string](Get-MSIProperty -MSIPath $script:dest -Parameter 'ProductCode') | Select-String -Pattern '{[A-Z0-9]{8}-([A-Z0-9]{4}-){3}[A-Z0-9]{12}}').Matches.Value + $MSIProductCode = ([string](Get-MSIProperty -Path $script:dest -Property 'ProductCode') | Select-String -Pattern '{[A-Z0-9]{8}-([A-Z0-9]{4}-){3}[A-Z0-9]{12}}').Matches.Value } elseif ([System.Environment]::OSVersion.Platform -match 'Unix' -and (Get-Item $script:dest).Name.EndsWith('.msi')) { $MSIProductCode = ([string](file $script:dest) | Select-String -Pattern '{[A-Z0-9]{8}-([A-Z0-9]{4}-){3}[A-Z0-9]{12}}').Matches.Value } @@ -3152,7 +3326,7 @@ Switch ($script:Option) { # If a new product code doesn't exist, and the installer isn't an `.exe` file, remove the product code if it exists $MSIProductCode = $null if ([System.Environment]::OSVersion.Platform -match 'Win' -and ($script:dest).EndsWith('.msi')) { - $MSIProductCode = ([string](Get-MSIProperty -MSIPath $script:dest -Parameter 'ProductCode') | Select-String -Pattern '{[A-Z0-9]{8}-([A-Z0-9]{4}-){3}[A-Z0-9]{12}}').Matches.Value + $MSIProductCode = ([string](Get-MSIProperty -Path $script:dest -Property 'ProductCode') | Select-String -Pattern '{[A-Z0-9]{8}-([A-Z0-9]{4}-){3}[A-Z0-9]{12}}').Matches.Value } elseif ([System.Environment]::OSVersion.Platform -match 'Unix' -and (Get-Item $script:dest).Name.EndsWith('.msi')) { $MSIProductCode = ([string](file $script:dest) | Select-String -Pattern '{[A-Z0-9]{8}-([A-Z0-9]{4}-){3}[A-Z0-9]{12}}').Matches.Value } diff --git a/Tools/cgmanifest.json b/Tools/cgmanifest.json index 2f3c2d13aa43d..476d36d0c9192 100644 --- a/Tools/cgmanifest.json +++ b/Tools/cgmanifest.json @@ -1,14 +1,39 @@ { "$schema": "https://json.schemastore.org/component-detection-manifest.json", - "Registrations": [ + "registrations": [ { - "Component": { - "Type": "git", - "git": { - "RepositoryUrl": "https://github.com/cloudbase/powershell-yaml", - "CommitHash": "03663c66e57ce2d0422077dc073bdb92e4d374b0" + "component": { + "type": "other", + "other": { + "name": "powershell-yaml", + "version": "0.4.12", + "downloadUrl": "https://www.powershellgallery.com/packages/powershell-yaml/0.4.12", + "hash": "d4602bc7a4a093766520422d53ca8b09acde162286fae11e2ee6c8edfea07810" + } + } + }, + { + "component": { + "type": "other", + "other": { + "name": "MSI", + "version": "3.3.4", + "downloadUrl": "https://www.powershellgallery.com/packages/MSI/3.3.4", + "hash": "c560c2059f51b5a773597e466f3ffb02952531f0965c17057451a74e0a75e1a8" + } + } + }, + { + "component": { + "type": "other", + "other": { + "name": "NTObjectManager", + "version": "2.0.1", + "downloadUrl": "https://www.powershellgallery.com/packages/NtObjectManager/2.0.1", + "hash": "e76f9a39760c12a36170516441987ad60f1699663cd5fb7c29705e68ab185beb" } } } - ] + ], + "version": 2 } diff --git a/manifests/1/1357310795/TboxWebdav/1.0.1/1357310795.TboxWebdav.installer.yaml b/manifests/1/1357310795/TboxWebdav/1.0.1/1357310795.TboxWebdav.installer.yaml new file mode 100644 index 0000000000000..f54964876da85 --- /dev/null +++ b/manifests/1/1357310795/TboxWebdav/1.0.1/1357310795.TboxWebdav.installer.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: 1357310795.TboxWebdav +PackageVersion: 1.0.1 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: TboxWebdav.Server.AspNetCore.exe + PortableCommandAlias: TboxWebdav.Server.AspNetCore +Commands: +- TboxWebdav.Server.AspNetCore +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.AspNetCore.8 +ReleaseDate: 2025-07-04 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/1357310795/TboxWebdav/releases/download/v1.0.1/TboxWebdav.Server.AspNetCore-win-x86-no-runtime.zip + InstallerSha256: 5AD794CDB00CA68205FF85C19B15766B9256F533225E48819BDC59077486A1DF +- Architecture: x64 + InstallerUrl: https://github.com/1357310795/TboxWebdav/releases/download/v1.0.1/TboxWebdav.Server.AspNetCore-win-x64-no-runtime.zip + InstallerSha256: C05EADC8A1011C9E552C3A27F68A53E0B688BB37EC4B63B483B1562C5A7420D3 +- Architecture: arm64 + InstallerUrl: https://github.com/1357310795/TboxWebdav/releases/download/v1.0.1/TboxWebdav.Server.AspNetCore-win-arm64-no-runtime.zip + InstallerSha256: 1C5BBB2AB16E91C0D936ECF92C7F0311C221E10FC609E4566793D3A58C9CB638 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/1/1357310795/TboxWebdav/1.0.1/1357310795.TboxWebdav.locale.en-US.yaml b/manifests/1/1357310795/TboxWebdav/1.0.1/1357310795.TboxWebdav.locale.en-US.yaml new file mode 100644 index 0000000000000..830d15fab2ab2 --- /dev/null +++ b/manifests/1/1357310795/TboxWebdav/1.0.1/1357310795.TboxWebdav.locale.en-US.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: 1357310795.TboxWebdav +PackageVersion: 1.0.1 +PackageLocale: en-US +Publisher: "1357310795" +PublisherUrl: https://github.com/1357310795 +PublisherSupportUrl: https://github.com/1357310795/TboxWebdav/issues +PackageName: TboxWebdav +PackageUrl: https://github.com/1357310795/TboxWebdav +License: GPL-2.0 +LicenseUrl: https://github.com/1357310795/TboxWebdav/blob/HEAD/LICENSE.txt +ShortDescription: A more convenient way to access SJTU Pan +Description: The program fills the gap between SJTU Pan (Tencent SMH) API and WebDAV protocol, allowing users to access SJTU Pan through WebDAV protocol and mount it as a network drive with Raidrive, which is perfectly integrated with File Explorer as if you are using a local drive. +Tags: +- pan +- sjtu +ReleaseNotes: 'Full Changelog: https://github.com/1357310795/TboxWebdav/compare/v1.0.0...v1.0.1' +ReleaseNotesUrl: https://github.com/1357310795/TboxWebdav/releases/tag/v1.0.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/1/1357310795/TboxWebdav/1.0.1/1357310795.TboxWebdav.locale.zh-CN.yaml b/manifests/1/1357310795/TboxWebdav/1.0.1/1357310795.TboxWebdav.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f8a6ffd9e2fdf --- /dev/null +++ b/manifests/1/1357310795/TboxWebdav/1.0.1/1357310795.TboxWebdav.locale.zh-CN.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: 1357310795.TboxWebdav +PackageVersion: 1.0.1 +PackageLocale: zh-CN +Publisher: "1357310795" +PublisherUrl: https://github.com/1357310795 +PublisherSupportUrl: https://github.com/1357310795/TboxWebdav/issues +PackageName: TboxWebdav +PackageUrl: https://github.com/1357310795/TboxWebdav +License: GPL-2.0 +LicenseUrl: https://github.com/1357310795/TboxWebdav/blob/HEAD/LICENSE.txt +ShortDescription: 更便捷地访问新交大云盘 +Description: 程序对接了新交大云盘(腾讯 SMH)API 和 WebDAV 协议,用户可以通过 WebDAV 协议访问新交大云盘,借助 Raidrive 可将新交大云盘挂载为网络磁盘,与资源管理器深度整合,使用体验接近本地磁盘。 +Tags: +- 上海交大 +- 上海交通大学 +- 交大 +- 交大云盘 +ReleaseNotesUrl: https://github.com/1357310795/TboxWebdav/releases/tag/v1.0.1 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BrinkSoftware/IbisCalculerenVoorInstallatie/3.0.2505.10701/BrinkSoftware.IbisCalculerenVoorInstallatie.yaml b/manifests/1/1357310795/TboxWebdav/1.0.1/1357310795.TboxWebdav.yaml similarity index 66% rename from manifests/b/BrinkSoftware/IbisCalculerenVoorInstallatie/3.0.2505.10701/BrinkSoftware.IbisCalculerenVoorInstallatie.yaml rename to manifests/1/1357310795/TboxWebdav/1.0.1/1357310795.TboxWebdav.yaml index 8d121ab60b677..d16d321afc692 100644 --- a/manifests/b/BrinkSoftware/IbisCalculerenVoorInstallatie/3.0.2505.10701/BrinkSoftware.IbisCalculerenVoorInstallatie.yaml +++ b/manifests/1/1357310795/TboxWebdav/1.0.1/1357310795.TboxWebdav.yaml @@ -1,8 +1,8 @@ # Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json -PackageIdentifier: BrinkSoftware.IbisCalculerenVoorInstallatie -PackageVersion: 3.0.2505.10701 +PackageIdentifier: 1357310795.TboxWebdav +PackageVersion: 1.0.1 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/7/7S2P/Effie/CN/6.1.1/7S2P.Effie.CN.installer.yaml b/manifests/7/7S2P/Effie/CN/6.1.1/7S2P.Effie.CN.installer.yaml new file mode 100644 index 0000000000000..0cb96e9508083 --- /dev/null +++ b/manifests/7/7S2P/Effie/CN/6.1.1/7S2P.Effie.CN.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: 7S2P.Effie.CN +PackageVersion: 6.1.1 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- effie +ProductCode: Effie_is1 +AppsAndFeaturesEntries: +- DisplayName: Effie 2.2.17 + ProductCode: Effie_is1 +Installers: +- Architecture: x86 + InstallerUrl: https://download.effie.co/effie/effie_setup_6.1.1.exe + InstallerSha256: 844C05AE08E5E4B76BE8D2D8062A3B7F471E0C5E9EFC37148766A2E90D85C5F3 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/7/7S2P/Effie/CN/6.1.1/7S2P.Effie.CN.locale.en-US.yaml b/manifests/7/7S2P/Effie/CN/6.1.1/7S2P.Effie.CN.locale.en-US.yaml new file mode 100644 index 0000000000000..5d15d92e63257 --- /dev/null +++ b/manifests/7/7S2P/Effie/CN/6.1.1/7S2P.Effie.CN.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.10.0.schema.json + +PackageIdentifier: 7S2P.Effie.CN +PackageVersion: 6.1.1 +PackageLocale: en-US +Publisher: 7S2P Inc. +PublisherUrl: https://www.effie.co/ +PrivacyUrl: https://www.effie.co/privacy +Author: Shanghai 7S2P Technology Co., Ltd. +PackageName: Effie +PackageUrl: https://www.effie.co/ +License: Proprietary +LicenseUrl: https://www.effie.co/terms +Copyright: 版权所有 © 2022 上海七加二科技有限公司 保留所有权利 +ShortDescription: Make ideas happen +Description: Effie is a list making, mind mapping, note taking, focused markup-based writing tool that helps to visualize your ideas with mindmaps and outlines, and turn them into great writing pieces in the simple, discretion-free environment. +Tags: +- article +- docs +- document +- editor +- markdown +- mind-map +- mind-mapping +- mindmap +- notes +- outline +- outliner +- writing +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://blog.effie.co/fq/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/7/7S2P/Effie/CN/6.1.1/7S2P.Effie.CN.locale.zh-CN.yaml b/manifests/7/7S2P/Effie/CN/6.1.1/7S2P.Effie.CN.locale.zh-CN.yaml new file mode 100644 index 0000000000000..8f130bc9245c8 --- /dev/null +++ b/manifests/7/7S2P/Effie/CN/6.1.1/7S2P.Effie.CN.locale.zh-CN.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: 7S2P.Effie.CN +PackageVersion: 6.1.1 +PackageLocale: zh-CN +Publisher: 7S2P Inc. +PublisherUrl: https://www.effie.co/ +PrivacyUrl: https://www.effie.co/privacy +Author: 上海七加二科技有限公司 +PackageName: Effie +PackageUrl: https://www.effie.co/ +License: 专有软件 +LicenseUrl: https://www.effie.co/terms +Copyright: 版权所有 © 2022 上海七加二科技有限公司 保留所有权利 +ShortDescription: 把思想变成价值 +Description: Effie 是思想家专用的写作软件。无论是严肃写作,随手记录,亦或是把逻辑完善成思维导图,Effie 都是您明智的选择。 +Tags: +- markdown +- 写作 +- 大纲 +- 思维导图 +- 文档 +- 文稿 +- 文章 +- 笔记 +- 编辑器 +- 脑图 +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://blog.effie.co/fq/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CDESoftware/BTM-2023/23.04.0003/CDESoftware.BTM-2023.yaml b/manifests/7/7S2P/Effie/CN/6.1.1/7S2P.Effie.CN.yaml similarity index 54% rename from manifests/c/CDESoftware/BTM-2023/23.04.0003/CDESoftware.BTM-2023.yaml rename to manifests/7/7S2P/Effie/CN/6.1.1/7S2P.Effie.CN.yaml index 395eb6653d7a8..9c22f6621a2ca 100644 --- a/manifests/c/CDESoftware/BTM-2023/23.04.0003/CDESoftware.BTM-2023.yaml +++ b/manifests/7/7S2P/Effie/CN/6.1.1/7S2P.Effie.CN.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/May/28 +# Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json -PackageIdentifier: CDESoftware.BTM-2023 -PackageVersion: 23.04.0003 +PackageIdentifier: 7S2P.Effie.CN +PackageVersion: 6.1.1 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/7/7S2P/Effie/CN/6.1.3/7S2P.Effie.CN.installer.yaml b/manifests/7/7S2P/Effie/CN/6.1.3/7S2P.Effie.CN.installer.yaml new file mode 100644 index 0000000000000..4f633f888a110 --- /dev/null +++ b/manifests/7/7S2P/Effie/CN/6.1.3/7S2P.Effie.CN.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: 7S2P.Effie.CN +PackageVersion: 6.1.3 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- effie +ProductCode: Effie_is1 +AppsAndFeaturesEntries: +- DisplayName: Effie 2.2.17 + ProductCode: Effie_is1 +Installers: +- Architecture: x86 + InstallerUrl: https://download.effie.co/effie/effie_setup_6.1.3.exe + InstallerSha256: F4455E7715A859B88067B4F0A1CCA6D18F28FAEAE68F33F344ECF1EC2A7F3DA5 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/7/7S2P/Effie/CN/6.1.3/7S2P.Effie.CN.locale.en-US.yaml b/manifests/7/7S2P/Effie/CN/6.1.3/7S2P.Effie.CN.locale.en-US.yaml new file mode 100644 index 0000000000000..91c29fbaa0bf8 --- /dev/null +++ b/manifests/7/7S2P/Effie/CN/6.1.3/7S2P.Effie.CN.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.10.0.schema.json + +PackageIdentifier: 7S2P.Effie.CN +PackageVersion: 6.1.3 +PackageLocale: en-US +Publisher: 7S2P Inc. +PublisherUrl: https://www.effie.co/ +PrivacyUrl: https://www.effie.co/privacy +Author: Shanghai 7S2P Technology Co., Ltd. +PackageName: Effie +PackageUrl: https://www.effie.co/ +License: Proprietary +LicenseUrl: https://www.effie.co/terms +Copyright: 版权所有 © 2022 上海七加二科技有限公司 保留所有权利 +ShortDescription: Make ideas happen +Description: Effie is a list making, mind mapping, note taking, focused markup-based writing tool that helps to visualize your ideas with mindmaps and outlines, and turn them into great writing pieces in the simple, discretion-free environment. +Tags: +- article +- docs +- document +- editor +- markdown +- mind-map +- mind-mapping +- mindmap +- notes +- outline +- outliner +- writing +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://blog.effie.co/fq/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/7/7S2P/Effie/CN/6.1.3/7S2P.Effie.CN.locale.zh-CN.yaml b/manifests/7/7S2P/Effie/CN/6.1.3/7S2P.Effie.CN.locale.zh-CN.yaml new file mode 100644 index 0000000000000..3f103af836dac --- /dev/null +++ b/manifests/7/7S2P/Effie/CN/6.1.3/7S2P.Effie.CN.locale.zh-CN.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: 7S2P.Effie.CN +PackageVersion: 6.1.3 +PackageLocale: zh-CN +Publisher: 7S2P Inc. +PublisherUrl: https://www.effie.co/ +PrivacyUrl: https://www.effie.co/privacy +Author: 上海七加二科技有限公司 +PackageName: Effie +PackageUrl: https://www.effie.co/ +License: 专有软件 +LicenseUrl: https://www.effie.co/terms +Copyright: 版权所有 © 2022 上海七加二科技有限公司 保留所有权利 +ShortDescription: 把思想变成价值 +Description: Effie 是思想家专用的写作软件。无论是严肃写作,随手记录,亦或是把逻辑完善成思维导图,Effie 都是您明智的选择。 +Tags: +- markdown +- 写作 +- 大纲 +- 思维导图 +- 文档 +- 文稿 +- 文章 +- 笔记 +- 编辑器 +- 脑图 +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://blog.effie.co/fq/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/7/7S2P/Effie/CN/6.1.3/7S2P.Effie.CN.yaml b/manifests/7/7S2P/Effie/CN/6.1.3/7S2P.Effie.CN.yaml new file mode 100644 index 0000000000000..784a330cf4736 --- /dev/null +++ b/manifests/7/7S2P/Effie/CN/6.1.3/7S2P.Effie.CN.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: 7S2P.Effie.CN +PackageVersion: 6.1.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/7/7S2P/Effie/CN/6.1.5/7S2P.Effie.CN.installer.yaml b/manifests/7/7S2P/Effie/CN/6.1.5/7S2P.Effie.CN.installer.yaml new file mode 100644 index 0000000000000..51947ea69612c --- /dev/null +++ b/manifests/7/7S2P/Effie/CN/6.1.5/7S2P.Effie.CN.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: 7S2P.Effie.CN +PackageVersion: 6.1.5 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- effie +ProductCode: Effie_is1 +AppsAndFeaturesEntries: +- DisplayName: Effie 2.2.17 + ProductCode: Effie_is1 +Installers: +- Architecture: x86 + InstallerUrl: https://download.effie.co/effie/effie_setup_6.1.5.exe + InstallerSha256: 9A0EFFB8B2E505B2763D583D0070F73CA3FF26C780C778F0C7A34B1A05FE9A1B +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/7/7S2P/Effie/CN/6.1.5/7S2P.Effie.CN.locale.en-US.yaml b/manifests/7/7S2P/Effie/CN/6.1.5/7S2P.Effie.CN.locale.en-US.yaml new file mode 100644 index 0000000000000..9cd4403ae6467 --- /dev/null +++ b/manifests/7/7S2P/Effie/CN/6.1.5/7S2P.Effie.CN.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.10.0.schema.json + +PackageIdentifier: 7S2P.Effie.CN +PackageVersion: 6.1.5 +PackageLocale: en-US +Publisher: 7S2P Inc. +PublisherUrl: https://www.effie.co/ +PrivacyUrl: https://www.effie.co/privacy +Author: Shanghai 7S2P Technology Co., Ltd. +PackageName: Effie +PackageUrl: https://www.effie.co/ +License: Proprietary +LicenseUrl: https://www.effie.co/terms +Copyright: 版权所有 © 2022 上海七加二科技有限公司 保留所有权利 +ShortDescription: Make ideas happen +Description: Effie is a list making, mind mapping, note taking, focused markup-based writing tool that helps to visualize your ideas with mindmaps and outlines, and turn them into great writing pieces in the simple, discretion-free environment. +Tags: +- article +- docs +- document +- editor +- markdown +- mind-map +- mind-mapping +- mindmap +- notes +- outline +- outliner +- writing +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://blog.effie.co/fq/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/7/7S2P/Effie/CN/6.1.5/7S2P.Effie.CN.locale.zh-CN.yaml b/manifests/7/7S2P/Effie/CN/6.1.5/7S2P.Effie.CN.locale.zh-CN.yaml new file mode 100644 index 0000000000000..3019fffcf431f --- /dev/null +++ b/manifests/7/7S2P/Effie/CN/6.1.5/7S2P.Effie.CN.locale.zh-CN.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: 7S2P.Effie.CN +PackageVersion: 6.1.5 +PackageLocale: zh-CN +Publisher: 7S2P Inc. +PublisherUrl: https://www.effie.co/ +PrivacyUrl: https://www.effie.co/privacy +Author: 上海七加二科技有限公司 +PackageName: Effie +PackageUrl: https://www.effie.co/ +License: 专有软件 +LicenseUrl: https://www.effie.co/terms +Copyright: 版权所有 © 2022 上海七加二科技有限公司 保留所有权利 +ShortDescription: 把思想变成价值 +Description: Effie 是思想家专用的写作软件。无论是严肃写作,随手记录,亦或是把逻辑完善成思维导图,Effie 都是您明智的选择。 +Tags: +- markdown +- 写作 +- 大纲 +- 思维导图 +- 文档 +- 文稿 +- 文章 +- 笔记 +- 编辑器 +- 脑图 +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://blog.effie.co/fq/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/7/7S2P/Effie/CN/6.1.5/7S2P.Effie.CN.yaml b/manifests/7/7S2P/Effie/CN/6.1.5/7S2P.Effie.CN.yaml new file mode 100644 index 0000000000000..b02f49ab6ce00 --- /dev/null +++ b/manifests/7/7S2P/Effie/CN/6.1.5/7S2P.Effie.CN.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: 7S2P.Effie.CN +PackageVersion: 6.1.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.installer.yaml b/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.installer.yaml index 4a3c3c6cf7015..6e987c3b045c5 100644 --- a/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.installer.yaml +++ b/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Jul/07 +# Automatically updated by the winget bot at 2025/Jul/08 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: AGTEK.Gradework @@ -24,6 +24,6 @@ ReleaseDate: 2025-07-01 Installers: - Architecture: x64 InstallerUrl: https://agtek.s3.amazonaws.com/Agtek/w9S1Pt7Av1mm - InstallerSha256: FD41D919D62CFEE7A4F2F6738385B4B1F267B492E8022F46CCD39CEDB7C7EE9B + InstallerSha256: 526534DC47C51209FE57711FE4978C9CDFB6FC95A142AC819A73C0E523430CC7 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.locale.en-US.yaml b/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.locale.en-US.yaml index 9339e232cb050..56fd3b5aa1ee7 100644 --- a/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.locale.en-US.yaml +++ b/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Jul/07 +# Automatically updated by the winget bot at 2025/Jul/08 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: AGTEK.Gradework diff --git a/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.locale.zh-CN.yaml b/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.locale.zh-CN.yaml index 360a67b220b51..e43d0268ffa01 100644 --- a/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.locale.zh-CN.yaml +++ b/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Jul/07 +# Automatically updated by the winget bot at 2025/Jul/08 # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: AGTEK.Gradework diff --git a/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.yaml b/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.yaml index 50e535b9dcddd..9d7740495533a 100644 --- a/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.yaml +++ b/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Jul/07 +# Automatically updated by the winget bot at 2025/Jul/08 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: AGTEK.Gradework diff --git a/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.installer.yaml b/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.installer.yaml index 18ad181129211..258e15ff9be91 100644 --- a/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.installer.yaml +++ b/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Jul/07 +# Automatically updated by the winget bot at 2025/Jul/08 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: AGTEK.MaterialsSA @@ -20,6 +20,6 @@ ReleaseDate: 2025-07-01 Installers: - Architecture: x64 InstallerUrl: https://agtek.s3.amazonaws.com/Agtek/OSrEkdiUCWNd - InstallerSha256: E3E61D04FA744BACC16A6463CBE70AC92F14BCB8C8C606141015F2E2497C61B4 + InstallerSha256: 187887C97F47A610954818CF0F87E230A2AF7B48CF27153CD7569BB412BFA203 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.locale.en-US.yaml b/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.locale.en-US.yaml index b67ff1b7e9d35..f9ad92a89d855 100644 --- a/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.locale.en-US.yaml +++ b/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Jul/07 +# Automatically updated by the winget bot at 2025/Jul/08 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: AGTEK.MaterialsSA diff --git a/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.locale.zh-CN.yaml b/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.locale.zh-CN.yaml index ca5b51d3d8e33..d27549447bf3b 100644 --- a/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.locale.zh-CN.yaml +++ b/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Jul/07 +# Automatically updated by the winget bot at 2025/Jul/08 # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: AGTEK.MaterialsSA diff --git a/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.yaml b/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.yaml index 9fbfe85870b9b..34f4dc7fbc291 100644 --- a/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.yaml +++ b/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Jul/07 +# Automatically updated by the winget bot at 2025/Jul/08 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: AGTEK.MaterialsSA diff --git a/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.installer.yaml b/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.installer.yaml index 629eeac390850..1b13bc66b7d94 100644 --- a/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.installer.yaml +++ b/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Jul/07 +# Automatically updated by the winget bot at 2025/Jul/08 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: AGTEK.UndergroundSA @@ -20,6 +20,6 @@ ReleaseDate: 2025-07-01 Installers: - Architecture: x64 InstallerUrl: https://agtek.s3.amazonaws.com/Agtek/CWM10lfSal6j - InstallerSha256: 66FF591AA2A56D4BB7F38036ACF5320EA19206BC4443C99F8B8251A2BE96EA60 + InstallerSha256: F1B8F08B749F2CF32978980A90E67C0247FC682811F727DF087A41352922F837 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.locale.en-US.yaml b/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.locale.en-US.yaml index 010b094ea7cb1..b4f46eb4e334a 100644 --- a/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.locale.en-US.yaml +++ b/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Jul/07 +# Automatically updated by the winget bot at 2025/Jul/08 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: AGTEK.UndergroundSA diff --git a/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.locale.zh-CN.yaml b/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.locale.zh-CN.yaml index e3f4875520ffb..486f7a4ad615d 100644 --- a/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.locale.zh-CN.yaml +++ b/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Jul/07 +# Automatically updated by the winget bot at 2025/Jul/08 # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: AGTEK.UndergroundSA diff --git a/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.yaml b/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.yaml index 1c13b5a4fd02d..13190544735eb 100644 --- a/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.yaml +++ b/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Jul/07 +# Automatically updated by the winget bot at 2025/Jul/08 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: AGTEK.UndergroundSA diff --git a/manifests/a/AgileBits/1Password/8.11.0/AgileBits.1Password.installer.yaml b/manifests/a/AgileBits/1Password/8.11.0/AgileBits.1Password.installer.yaml new file mode 100644 index 0000000000000..8331fea7b9ab6 --- /dev/null +++ b/manifests/a/AgileBits/1Password/8.11.0/AgileBits.1Password.installer.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: AgileBits.1Password +PackageVersion: 8.11.0 +UpgradeBehavior: install +Protocols: +- onepassword +- onepassword8 +Installers: +- Architecture: x64 + InstallerType: exe + Scope: user + InstallerUrl: https://downloads.1password.com/win/1PasswordSetup-8.11.0.exe + InstallerSha256: A8EFFC21EB6EC79D970228E3AEEAA9F6C7DA4A97F0083029B107F636ED515812 + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent + ProductCode: 1Password +- Architecture: x64 + InstallerType: msi + Scope: machine + InstallerUrl: https://downloads.1password.com/win/1PasswordSetup-8.11.0.msi + InstallerSha256: 349DC193FB24EB8649BBD46CD79195C4B7E0C08BAC27BA00350A5994CA7A7F90 + ProductCode: '{2C75AC27-6C9A-4222-9799-C781C54E6E7D}' + AppsAndFeaturesEntries: + - Publisher: Agilebits Inc. + ProductCode: '{2C75AC27-6C9A-4222-9799-C781C54E6E7D}' + UpgradeCode: '{04B64D44-52BF-41A6-85BA-CDBA63AEB44D}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/AgileBits/1Password/8.11.0/AgileBits.1Password.locale.en-US.yaml b/manifests/a/AgileBits/1Password/8.11.0/AgileBits.1Password.locale.en-US.yaml new file mode 100644 index 0000000000000..71ba186d5c75f --- /dev/null +++ b/manifests/a/AgileBits/1Password/8.11.0/AgileBits.1Password.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: AgileBits.1Password +PackageVersion: 8.11.0 +PackageLocale: en-US +Publisher: AgileBits Inc. +PublisherUrl: https://1password.com/ +PublisherSupportUrl: https://support.1password.com/ +PrivacyUrl: https://1password.com/legal/privacy +Author: AgileBits Inc. +PackageName: 1Password +PackageUrl: https://1password.com/downloads/windows +License: Proprietary +LicenseUrl: https://1password.com/legal/terms-of-service +Copyright: © 2024 1Password. All rights reserved. +CopyrightUrl: https://1password.com/legal/terms-of-service +ShortDescription: Top-Rated Password Manager for Personal & Business Use +Description: Protect your sensitive information with our password manager. Stop data breaches, secure apps, and autofill passwords with 1Password. +Tags: +- credential +- password +- protect +- protection +- security +- vault +PurchaseUrl: https://1password.com/pricing +Documentations: +- DocumentLabel: 1Password Developer + DocumentUrl: https://developer.1password.com/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AgileBits/1Password/8.11.0/AgileBits.1Password.locale.zh-CN.yaml b/manifests/a/AgileBits/1Password/8.11.0/AgileBits.1Password.locale.zh-CN.yaml new file mode 100644 index 0000000000000..31f1ae56bac46 --- /dev/null +++ b/manifests/a/AgileBits/1Password/8.11.0/AgileBits.1Password.locale.zh-CN.yaml @@ -0,0 +1,30 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: AgileBits.1Password +PackageVersion: 8.11.0 +PackageLocale: zh-CN +Publisher: AgileBits Inc. +PublisherUrl: https://1password.com/zh-cn +PublisherSupportUrl: https://support.1password.com/ +PrivacyUrl: https://1password.com/zh-cn/legal/privacy +Author: AgileBits Inc. +PackageName: 1Password +PackageUrl: https://1password.com/downloads/windows +License: 专有软件 +LicenseUrl: https://1password.com/zh-cn/legal/terms-of-service +Copyright: © 2024 1Password. 保留所有权利。 +CopyrightUrl: https://1password.com/zh-cn/legal/terms-of-service +ShortDescription: 适合个人和企业使用的顶级密码管理器 +Description: 使用我们的密码管理器保护您的敏感信息。使用 1Password 杜绝数据泄露、确保应用程序安全并自动填充密码。 +Tags: +- 保护 +- 凭据 +- 安全 +- 密码 +PurchaseUrl: https://1password.com/zh-cn/pricing +Documentations: +- DocumentLabel: 1Password 开发者 + DocumentUrl: https://developer.1password.com/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AgileBits/1Password/8.11.0/AgileBits.1Password.yaml b/manifests/a/AgileBits/1Password/8.11.0/AgileBits.1Password.yaml new file mode 100644 index 0000000000000..01345bb25dfd6 --- /dev/null +++ b/manifests/a/AgileBits/1Password/8.11.0/AgileBits.1Password.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: AgileBits.1Password +PackageVersion: 8.11.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/AmyXun/AxMath/2.7061/AmyXun.AxMath.installer.yaml b/manifests/a/AmyXun/AxMath/2.7061/AmyXun.AxMath.installer.yaml index b5ae338147dc2..1954f688ba5ed 100644 --- a/manifests/a/AmyXun/AxMath/2.7061/AmyXun.AxMath.installer.yaml +++ b/manifests/a/AmyXun/AxMath/2.7061/AmyXun.AxMath.installer.yaml @@ -1,5 +1,5 @@ # Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: AmyXun.AxMath PackageVersion: "2.7061" @@ -12,10 +12,10 @@ UpgradeBehavior: install FileExtensions: - afx ProductCode: AxMath -ReleaseDate: 2025-02-22 +ReleaseDate: 2025-07-07 Installers: - Architecture: x86 - InstallerUrl: https://download.s21i.co99.net/4232652/0/0/ABUIABBPGAAg6LjlvQYo1JTFiQE.zip?f=公式编辑器_AxMath_Setup_Win_20250222.zip&v=1740201064 - InstallerSha256: F89B0D3C88DB2FF17C69F91F72A066CF81FD84B443B150C2EE1E056026403D04 + InstallerUrl: https://download.s21i.co99.net/4232652/0/0/ABUIABBPGAAgm4GuwwYoxfPnHg.zip?f=公式编辑器_AxMath_Setup_Win_20250707.zip&v=1751875739 + InstallerSha256: AFD752B3DAED851007DF967A925E11C831B19A06436542ED3C3D66A9E90F6C0F ManifestType: installer -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/a/AmyXun/AxMath/2.7061/AmyXun.AxMath.locale.en-US.yaml b/manifests/a/AmyXun/AxMath/2.7061/AmyXun.AxMath.locale.en-US.yaml index 8176a9a90ad4f..b4b41b5d3979e 100644 --- a/manifests/a/AmyXun/AxMath/2.7061/AmyXun.AxMath.locale.en-US.yaml +++ b/manifests/a/AmyXun/AxMath/2.7061/AmyXun.AxMath.locale.en-US.yaml @@ -1,5 +1,5 @@ # Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: AmyXun.AxMath PackageVersion: "2.7061" @@ -24,4 +24,4 @@ Documentations: - DocumentLabel: FAQ DocumentUrl: https://www.axsoft.co/faq/ ManifestType: defaultLocale -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/a/AmyXun/AxMath/2.7061/AmyXun.AxMath.locale.zh-CN.yaml b/manifests/a/AmyXun/AxMath/2.7061/AmyXun.AxMath.locale.zh-CN.yaml index 930a8c4666b4a..5fd1570c3d051 100644 --- a/manifests/a/AmyXun/AxMath/2.7061/AmyXun.AxMath.locale.zh-CN.yaml +++ b/manifests/a/AmyXun/AxMath/2.7061/AmyXun.AxMath.locale.zh-CN.yaml @@ -1,12 +1,12 @@ # Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: AmyXun.AxMath PackageVersion: "2.7061" PackageLocale: zh-CN Publisher: AmyXun PublisherUrl: https://www.amyxun.com/ -PublisherSupportUrl: http://muchong.com/bbs/myf.php?ffid=1010 +PublisherSupportUrl: https://muchong.com/bbs/myf.php?ffid=1010 PackageName: AxMath PackageUrl: https://www.amyxun.com/ License: 专有软件 @@ -18,8 +18,8 @@ Tags: - 公式 - 数学 - 计算器 -ReleaseNotes: 1. 改进对 Win11 及 Office2024 的支持。 +ReleaseNotes: 1. 增加或修改了若干 LaTeX 语法。 ReleaseNotesUrl: https://www.amyxun.com/nd.jsp?id=10 PurchaseUrl: https://www.amyxun.com/ ManifestType: locale -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/a/AmyXun/AxMath/2.7061/AmyXun.AxMath.yaml b/manifests/a/AmyXun/AxMath/2.7061/AmyXun.AxMath.yaml index 47a5779b71454..7cb9202f72ed3 100644 --- a/manifests/a/AmyXun/AxMath/2.7061/AmyXun.AxMath.yaml +++ b/manifests/a/AmyXun/AxMath/2.7061/AmyXun.AxMath.yaml @@ -1,8 +1,8 @@ # Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: AmyXun.AxMath PackageVersion: "2.7061" DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/a/alexpasmantier/television/0.12.0/alexpasmantier.television.installer.yaml b/manifests/a/alexpasmantier/television/0.12.0/alexpasmantier.television.installer.yaml new file mode 100644 index 0000000000000..23a302c3e998e --- /dev/null +++ b/manifests/a/alexpasmantier/television/0.12.0/alexpasmantier.television.installer.yaml @@ -0,0 +1,20 @@ +# Created with WinGet Updater using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: alexpasmantier.television +PackageVersion: 0.12.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: tv.exe +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2025-07-07 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/alexpasmantier/television/releases/download/0.12.0/tv-0.12.0-x86_64-pc-windows-msvc.zip + InstallerSha256: A346E8CF7E4EB0B5B44C7C3F879CF5599780531D96DBC3A3C1BF12656D254B4F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/alexpasmantier/television/0.12.0/alexpasmantier.television.locale.en-US.yaml b/manifests/a/alexpasmantier/television/0.12.0/alexpasmantier.television.locale.en-US.yaml new file mode 100644 index 0000000000000..b5b517359afcd --- /dev/null +++ b/manifests/a/alexpasmantier/television/0.12.0/alexpasmantier.television.locale.en-US.yaml @@ -0,0 +1,171 @@ +# Created with WinGet Updater using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: alexpasmantier.television +PackageVersion: 0.12.0 +PackageLocale: en-US +Publisher: alexpasmantier +PublisherUrl: https://github.com/alexpasmantier +PublisherSupportUrl: https://github.com/alexpasmantier/television/issues +PackageName: Television +PackageUrl: https://github.com/alexpasmantier/television +License: MIT +LicenseUrl: https://github.com/alexpasmantier/television/blob/HEAD/LICENSE +Copyright: Copyright (c) Alexandre Pasmantier +CopyrightUrl: https://github.com/alexpasmantier/television/blob/main/LICENSE +ShortDescription: A cross-platform, fast and extensible general purpose fuzzy finder TUI. +Tags: +- cli +- command-line-tool +- fuzzy +- fuzzy-matching +- fuzzy-search +- rust +- terminal +- tui +ReleaseNotes: |- + Release notes for television 0.12.0 + image + New Contributors + - @Ktoks made their first contribution in #590 + - @lalvarezt made their first contribution in #588 + - @kapobajza made their first contribution in #568 + - @domaschh made their first contribution + - @cr4ftx made their first contribution in #496 + Highlights + This section is meant as a quick recap of what you should know when upgrading to 0.12.0. + It is in no means exhaustive. If you're really interested in the complete changelog, feel free to skip ahead. + Channels refactor and lots of new features + - channels now allow much more configuration options + - channels are now laid out in a more natural way in the user's config directory + - tv now relies on string-pipeline as its templating system which provides a concise and very expressive syntax that supports quite a lot of basic transformations + - channels can be accessed directly using keyboard shortcuts (see config options above) + - community-maintained channels on the official repo can now be installed directly via the cli + - channels can now be live reloaded and can be configured to live reload periodically + CLI + Lots of new configuration options, all listed here, among which: + - UI elements, sizes, layout (most of which are covered here) + - channels can now be built on the fly using the cli: + tv --source-command "find . -name '*.rs'" \ + --preview-command "bat -n --color=always '{}'" \ + --preview-size 70 + - you may now choose to disable some of tv's features for a specific use case (e.g. opening tv in single-channel mode by disabling the remote control entirely, or choosing to disable the status bar for an extra line of space, etc.) + - you may now define custom keybindings through the cli + - you may tweak tv's selection behavior using --select-1, --take-1, --take-1-fast + - tv now has a --watch mode + - you may now download channels from tv's repo using the cli + New UI features and improvements to customization + tv-files-remote + - tv now has a status bar and a help panel + - the remote control went through a rework and now displays richer information about available channels + - tv now has a portrait mode + image + - the preview panel size is now configurable on a per channel basis + - tv now has an --inline mode (+ --height, --width) + image + - more customizable UI elements + image + - preview scrollbars + Shell integration + - added support for nushell + - shell integration now spawns tv in inline mode by default + - improved shell integration for zsh and fish + Others + - mouse support + - tui testing framework + - search history (per-channel and global) + - a lot of bug fixes + - substantial performance improvements while drawing much less resources + - heavy refactoring and simplifying the code (deleting nearly 10k loc) + - a fair amount of documentation work + - a lot of new tests + New website + Television now has a brand new website! + image + Changelog + ⛰️ Features + - c34fa57 (binary) Host our own apt repo by @kapobajza in #568 + - 7b40e76 (cable) Migrate windows channels by @alexpasmantier + - 6b38ce2 (cable) Migrate the rest of unix channels by @alexpasmantier + - a49f104 (channel) Add channel global shortcuts by @lalvarezt + - 1891736 (cli) Add watch flag to trigger reload of channels by @lalvarezt + - 2ecbc8a (cli) Initial support for source and preview overrides, layout, take_1 and take_1_fast by @lalvarezt + - bc8d636 (cli) Add cli options to override configuration and cable directories by @alexpasmantier + - f887a23 (cli) Add a --ui-scale [0,100] cli parameter by @alexpasmantier in #492 + - 7067a2b (remote) Rework remote UI and add description and requirements panels by @alexpasmantier + - cfe49ce (remote) Redirect Action::Quit to Action::ToggleRemoteControl when in remote mode by @alexpasmantier in #508 + - 4d80e95 (shell) Add support for integration with NuShell by @alexpasmantier in #410 + - 0f4d879 (shell) Improve zsh completion system by @lalvarezt in #525 + - be8008e (shell) Improve fish completion system by @lalvarezt in #494 + - 639caa1 (stdin) Accept various entry separator characters by @alexpasmantier in #572 + - ccc12e2 (tui) Add special testing conditions for overlay testing by @lalvarezt in #585 + - 4ed48cc (ui) Support for non-fullscreen UI by @lalvarezt in #578 + - 23f52d4 (ui) Optional scrollbar and mouse support for the preview panel by @lalvarezt + - ad4e254 (ui) New keybindings panel and status bar by @lalvarezt + - 510e7b6 (ui) Add support for customizing input_header, preview_header and preview_footer by @lalvarezt + - 783d96b (ui) Preview size customization by @lalvarezt + - 1086899 (ui) Add a UI portrait mode #489 by @cr4ftx in #496 + - 3b3a0ec (windows) Add text channel with preview offset for windows by @alexpasmantier in #514 + - 4513945 (uncategorized) Add global/channel input history by @lalvarezt in #573 + - 9e306d9 (uncategorized) New channel and added reload and toggle actions by @lalvarezt + 🐛 Bug Fixes + - dbff3a3 (alias) Move terminal raw mode before loading bat assets #444 by @cr4ftx in #484 + - 0514a91 (alias) Rename the aliases channel to alias by @alexpasmantier in #485 + - 67195e7 (app) Channel keybindings are ignored by @lalvarezt + - 415dd38 (app) Honor cli no-help and no-preview by @lalvarezt + - 6b3c4ee (cable) Don't panic when unable to format user template with entry by @alexpasmantier in #516 + - 5d730cd (channel) Only allow reload and cycle_sources in channel mode by @alexpasmantier + - 17439da (channels) Quote bat arguments by @Ktoks in #590 + - 07556ea (cli) Fix validation rules when reading from stdin by @alexpasmantier + - ca5808a (cli) Fix parsing of arguments for autocomplete-prompt by @lalvarezt in #569 + - 090d71a (cli) Using --exact now works on the --input text aswell by @domaschh + - dfbdd65 (config) Use the config default_channel field as a fallback when no channel is specified by @alexpasmantier in #524 + - 653c986 (github) Copy github prototypes' content directly by @alexpasmantier + - 3e98475 (github) Improve ux when downloading cable channels by @alexpasmantier + - 9a80919 (keybindings) Add cmd as an option for modifrs by @domaschh + - cd33151 (layout) Double check whether preview is enabled by @nkxxll in #499 + - d429a9a (matcher) Better handling of reloading and cycling through sources by @alexpasmantier + - 94e34c1 (os) No more panicking on cwd-related errors by @alexpasmantier + - 0f8a585 (preview) Default to no offset when offset template formatting fails by @alexpasmantier + - a81a86f (preview) Don't panic when the previewer attempts to send to a closed channel by @alexpasmantier + - 1741a15 (preview) Add a post-processing step to clean out ansi text from non-displayable characters by @alexpasmantier in #509 + - a8fb0f0 (reload) Avoid UI flickering while reloading channel by @alexpasmantier + - 1f0c178 (results) Remove keymap hint if help is disabled by @nkxxll in #480 + - 39dd9ef (shell) Paste not working in zsh shell integration by @kapobajza in #512 + - 1de2866 (templates) Handle case when template contains brackets that shouldn't be interpreted by the parser by @alexpasmantier + - dde3193 (tui) Fixed shell completion widget not rendering, add poc for fish by @lalvarezt in #588 + - dc75e80 (ui) Avoid glitches caused by programs outputting control sequences by @alexpasmantier in #579 + - e5a13ef (uncategorized) Reset picker selection when cycling through sources by @alexpasmantier + - b0c25b1 (uncategorized) Rollback unwanted modifications on text and env prototypes by @alexpasmantier + - 175015d (uncategorized) Load new channel after zapping with the remote by @alexpasmantier + - c80e9b1 (uncategorized) "toggle source" leftovers by @alexpasmantier + 🚜 Refactor + - 2fdb47f (cable) Add helper function to get keybindings by @lalvarezt + - e06e5e6 (cable) Update preview size for files and env by @alexpasmantier + - e76a3df (cable) Cable format redesign by @alexpasmantier [breaking] + - b372fe8 (cable) Add files and text channels with the new configuration format by @alexpasmantier in #534 + - e2f52b8 (cable) Improve naming and documentation for prototypes.rs by @alexpasmantier in #487 + - 4385317 (cable) Split cable related code into separate submodules by @alexpasmantier in #486 + - 1a5fa5d (channels) Some renaming and refactoring the channels module by @alexpasmantier in #503 + - a2ebbb3 (cli) Add validation logic + docs by @lalvarezt + - ebca4d2 (cli) Move cli overrides to dedicated function by @alexpasmantier + - 80cb6c3 (picker) New movement system by @lalvarezt + - b9f42e8 (preview) Simplify channel previews code and remove intermediate PreviewKind struct by @alexpasmantier in #490 + - 67c067f (previewer) A much more efficient preview system for tv by @alexpasmantier in #506 + - f138e8a (screen) Remove leftover line number, not used anymore by @lalvarezt + - 7ac2f28 (screen) New result line abstraction that can be reused by @lalvarezt + - 4b338f5 (shell) Make use the new Binding system by @lalvarezt + - 58d90c6 (ui) Feature based UI by @lalvarezt + - 8fd9163 (uncategorized) More stable behavior for --inline, --width and --height by @alexpasmantier in #589 + - d82bf72 (uncategorized) Extract overlay tui logic into separate function and call it on resize events by @alexpasmantier + - 4faab40 (uncategorized) QOL improvements on channels and CLI override logic by @lalvarezt in #584 + - 292c521 (uncategorized) Use super for linux and windows and cmd for macos by @alexpasmantier in #571 + - 51617b1 (uncategorized) Clearer separation of channels vs remote, better deserialization of prototype sub-structures, etc. by @alexpasmantier + - 53c36f0 (uncategorized) Add reload and cycle source to default keymaps + default keymap changes by @alexpasmantier + - 466a743 (uncategorized) Strip new channels to their bare minimum config by @alexpasmantier + - 2b2654b (uncategorized) Drop TelevisionChannel enum and all associated macros by @alexpasmantier in #498 + - cc27b5e (uncategorized) Drop dependency to the ignore crate by @alexpasmantier + - c2f4cc2 (uncategorized) Tv no longer needs to write the default cable channel recipes to the user's configuration directory by @alexpasmantier in #482 +ReleaseNotesUrl: https://github.com/alexpasmantier/television/releases/tag/0.12.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iTop/iTopDataRecovery/5.2.0.832/iTop.iTopDataRecovery.yaml b/manifests/a/alexpasmantier/television/0.12.0/alexpasmantier.television.yaml similarity index 54% rename from manifests/i/iTop/iTopDataRecovery/5.2.0.832/iTop.iTopDataRecovery.yaml rename to manifests/a/alexpasmantier/television/0.12.0/alexpasmantier.television.yaml index ade83453d54fe..750855362e2c4 100644 --- a/manifests/i/iTop/iTopDataRecovery/5.2.0.832/iTop.iTopDataRecovery.yaml +++ b/manifests/a/alexpasmantier/television/0.12.0/alexpasmantier.television.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/May/14 +# Created with WinGet Updater using komac v2.12.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json -PackageIdentifier: iTop.iTopDataRecovery -PackageVersion: 5.2.0.832 +PackageIdentifier: alexpasmantier.television +PackageVersion: 0.12.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/b/Bin-Huang/Chatbox/1.15.0/Bin-Huang.Chatbox.installer.yaml b/manifests/b/Bin-Huang/Chatbox/1.15.0/Bin-Huang.Chatbox.installer.yaml new file mode 100644 index 0000000000000..2390a74b83f6f --- /dev/null +++ b/manifests/b/Bin-Huang/Chatbox/1.15.0/Bin-Huang.Chatbox.installer.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Bin-Huang.Chatbox +PackageVersion: 1.15.0 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: bd4f3b30-4f23-5853-b30a-61e20eb47251 +ReleaseDate: 2025-07-07 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://download.chatboxai.app/releases/Chatbox-1.15.0-Setup.exe + InstallerSha256: 0F4E5848D21EA3CDB8E73D5BBF03C1FD9540B296D3525B673C9A30DD45202E2C + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://download.chatboxai.app/releases/Chatbox-1.15.0-Setup.exe + InstallerSha256: 0F4E5848D21EA3CDB8E73D5BBF03C1FD9540B296D3525B673C9A30DD45202E2C + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: user + InstallerUrl: https://download.chatboxai.app/releases/Chatbox-1.15.0-Setup.exe + InstallerSha256: 0F4E5848D21EA3CDB8E73D5BBF03C1FD9540B296D3525B673C9A30DD45202E2C + InstallerSwitches: + Custom: /currentuser +- Architecture: arm64 + Scope: machine + InstallerUrl: https://download.chatboxai.app/releases/Chatbox-1.15.0-Setup.exe + InstallerSha256: 0F4E5848D21EA3CDB8E73D5BBF03C1FD9540B296D3525B673C9A30DD45202E2C + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bin-Huang/Chatbox/1.15.0/Bin-Huang.Chatbox.locale.en-US.yaml b/manifests/b/Bin-Huang/Chatbox/1.15.0/Bin-Huang.Chatbox.locale.en-US.yaml new file mode 100644 index 0000000000000..aa919de153ebf --- /dev/null +++ b/manifests/b/Bin-Huang/Chatbox/1.15.0/Bin-Huang.Chatbox.locale.en-US.yaml @@ -0,0 +1,39 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Bin-Huang.Chatbox +PackageVersion: 1.15.0 +PackageLocale: en-US +Publisher: Benn Huang +PublisherUrl: https://www.bennhuang.com/ +PublisherSupportUrl: https://chatboxai.app/help-center +PrivacyUrl: https://chatboxai.app/privacy +Author: Benn Huang +PackageName: Chatbox +PackageUrl: https://chatboxai.app/ +License: Proprietary +LicenseUrl: https://chatboxai.app/terms +Copyright: © 2024 Chatbox App. All rights reserved. +ShortDescription: Your AI Copilot on the Desktop +Description: Chatbox is an open-source desktop app for GPT-4 / GPT-3.5 (OpenAI API) that supports Windows, Mac & Linux. +Tags: +- ai +- chatbot +- chatgpt +- claude +- deepseek +- doubao +- gemini +- kimi +- large-language-model +- llama +- llm +- mistral +- qwen +ReleaseNotes: |- + 1. Local knowledge base support + 2. Adjust thinking and tool call message style +ReleaseNotesUrl: https://chatboxai.app/help-center/changelog +PurchaseUrl: https://chatboxai.app/#pricing +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bin-Huang/Chatbox/1.15.0/Bin-Huang.Chatbox.locale.zh-CN.yaml b/manifests/b/Bin-Huang/Chatbox/1.15.0/Bin-Huang.Chatbox.locale.zh-CN.yaml new file mode 100644 index 0000000000000..361d41927a345 --- /dev/null +++ b/manifests/b/Bin-Huang/Chatbox/1.15.0/Bin-Huang.Chatbox.locale.zh-CN.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Bin-Huang.Chatbox +PackageVersion: 1.15.0 +PackageLocale: zh-CN +Publisher: Benn Huang +PublisherUrl: https://www.bennhuang.com/ +PublisherSupportUrl: https://chatboxai.app/zh/help-center +PrivacyUrl: https://chatboxai.app/zh/privacy +Author: Benn Huang +PackageName: Chatbox +PackageUrl: https://chatboxai.app/cn +License: 专有软件 +LicenseUrl: https://chatboxai.app/zh/terms +Copyright: © 2024 Chatbox App. All rights reserved. +ShortDescription: 办公学习的 AI 好助手 +Description: Chatbox 支持多款全球最先进的 AI 大模型服务,支持 Windows、Mac 和 Linux。作为一款热门的开源桌面应用,深受全 世界专业人士的好评。 +Tags: +- ai +- chatgpt +- claude +- deepseek +- gemini +- kimi +- llama +- llm +- mistral +- 人工智能 +- 大语言模型 +- 聊天机器人 +- 豆包 +- 通义千问 +ReleaseNotes: |- + 1. 桌面端本地知识库支持 + 2. 调整思考以及工具调用样式 +ReleaseNotesUrl: https://chatboxai.app/zh/help-center/changelog +PurchaseUrl: https://chatboxai.app/zh#pricing +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bin-Huang/Chatbox/1.15.0/Bin-Huang.Chatbox.yaml b/manifests/b/Bin-Huang/Chatbox/1.15.0/Bin-Huang.Chatbox.yaml new file mode 100644 index 0000000000000..e8925a848bc81 --- /dev/null +++ b/manifests/b/Bin-Huang/Chatbox/1.15.0/Bin-Huang.Chatbox.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Bin-Huang.Chatbox +PackageVersion: 1.15.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bluebeam/BluebeamOCR/21/21.0.30/Bluebeam.BluebeamOCR.21.installer.yaml b/manifests/b/Bluebeam/BluebeamOCR/21/21.0.30/Bluebeam.BluebeamOCR.21.installer.yaml index 526cec20fda4a..5c05387515394 100644 --- a/manifests/b/Bluebeam/BluebeamOCR/21/21.0.30/Bluebeam.BluebeamOCR.21.installer.yaml +++ b/manifests/b/Bluebeam/BluebeamOCR/21/21.0.30/Bluebeam.BluebeamOCR.21.installer.yaml @@ -17,7 +17,7 @@ AppsAndFeaturesEntries: UpgradeCode: '{623BF0BF-FD84-47DC-9F1A-3F6CBCA000BB}' Installers: - Architecture: x64 - InstallerUrl: https://downloads.bluebeam.com/software/downloads/21.6.0/MSIBluebeamRevu21.6.0x64.zip - InstallerSha256: 60339A61FB40518CA3B67F4F09077238C670B1E15EC8501AC03052E960345BFD + InstallerUrl: https://downloads.bluebeam.com/software/downloads/21.6.1/MSIBluebeamRevu21.6.1x64.zip + InstallerSha256: 978CECEB1422E4DB4F74BB7EA242E13EE3C828D68AE281056A9C7D80B894ACCA ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/b/Bluebeam/Revu/21/21.6.1/Bluebeam.Revu.21.installer.yaml b/manifests/b/Bluebeam/Revu/21/21.6.1/Bluebeam.Revu.21.installer.yaml new file mode 100644 index 0000000000000..b495ca066c9bf --- /dev/null +++ b/manifests/b/Bluebeam/Revu/21/21.6.1/Bluebeam.Revu.21.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Bluebeam.Revu.21 +PackageVersion: 21.6.1 +InstallerType: zip +NestedInstallerType: msi +NestedInstallerFiles: +- RelativeFilePath: Bluebeam Revu x64 21.msi +Scope: machine +InstallerSwitches: + InstallLocation: BB_NEW_INSTALL_PATH="" +UpgradeBehavior: install +Protocols: +- bluebeam +- openspinrevu +- studio +FileExtensions: +- bax +- bex +- bfx +- bhx +- blx +- bpx +- bsx +- btx +- fdf +- pdf +- studio +ProductCode: '{6FF2A905-75DD-476C-A68C-908367C4C862}' +AppsAndFeaturesEntries: +- DisplayName: Bluebeam Revu x64 21 + ProductCode: '{6FF2A905-75DD-476C-A68C-908367C4C862}' + UpgradeCode: '{7463A9D3-9B86-4473-B327-833CFC31713F}' +Installers: +- Architecture: x64 + InstallerUrl: https://downloads.bluebeam.com/software/downloads/21.6.1/MSIBluebeamRevu21.6.1x64.zip + InstallerSha256: 978CECEB1422E4DB4F74BB7EA242E13EE3C828D68AE281056A9C7D80B894ACCA +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bluebeam/Revu/21/21.6.1/Bluebeam.Revu.21.locale.en-US.yaml b/manifests/b/Bluebeam/Revu/21/21.6.1/Bluebeam.Revu.21.locale.en-US.yaml new file mode 100644 index 0000000000000..85100b81f749f --- /dev/null +++ b/manifests/b/Bluebeam/Revu/21/21.6.1/Bluebeam.Revu.21.locale.en-US.yaml @@ -0,0 +1,59 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Bluebeam.Revu.21 +PackageVersion: 21.6.1 +PackageLocale: en-US +Publisher: Bluebeam, Inc. +PublisherUrl: https://www.bluebeam.com/ +PublisherSupportUrl: https://support.bluebeam.com/ +PrivacyUrl: https://www.bluebeam.com/legal/privacy-policy/ +Author: Bluebeam, Inc. +PackageName: Bluebeam Revu 21 +PackageUrl: https://www.bluebeam.com/download/ +License: Proprietary +LicenseUrl: https://www.bluebeam.com/legal/terms-of-use/ +Copyright: Copyright © 2002-2024 Bluebeam, Inc. All rights reserved. +CopyrightUrl: https://www.bluebeam.com/legal/intellectual-property/ +ShortDescription: Mark up PDFs, build custom workflows and collaborate in real time from anywhere. +Description: Revu is Bluebeam's foundational project efficiency and collaboration solution that allows you to create, edit, mark up, and organize PDFs with project partners on desktop. +Moniker: revu +Tags: +- annotate +- annotation +- collaborate +- collaboration +- comment +- edit +- editor +- ocr +- pdf +- read +- reader +- viewer +ReleaseNotes: |- + Revu 21.6.1 - Release Notes + What’s Fixed + - Hovering over Symbols in the Tool Chest no longer showed additional information. + - Dynamic Toolset scale was misapplied to Sequence markups. + - Placing a profile on a network drive caused 'My Tools' to duplicate in the profile. + - Unpaid participants were unable to collaborate in Studio Sessions due to 'Tool Sets available after sign-in' blocking access. + - Count Measurement details (e.g. Subject, Label) could not be edited in the Tool Chest. + - Sequence Markups disappeared and an exception was thrown when flattening documents containing them. + - Grouped count symbols failed to appear on the page while using Resume Count until the tool was deselected. + - Font family, size and colour settings for the Length tool did not persist when set as default or applied from the Tool Chest in properties mode. + - The 'Automatically Create Form Fields' feature did not detect form fields. + For full release notes, visit our support site at https://support.bluebeam.com/articles/revu-21-release-notes +ReleaseNotesUrl: https://support.bluebeam.com/articles/revu-21-release-notes/ +PurchaseUrl: https://www.bluebeam.com/pricing/ +Documentations: +- DocumentLabel: Help + DocumentUrl: https://support.bluebeam.com/online-help/revu21/Content/RevuHelp/Dashboard.htm +- DocumentLabel: Learning Center + DocumentUrl: https://www.bluebeam.com/resources/learning-center/ +- DocumentLabel: Training Videos + DocumentUrl: https://support.bluebeam.com/training-videos/ +- DocumentLabel: FAQ + DocumentUrl: https://www.bluebeam.com/contact/#faqs +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bluebeam/Revu/21/21.6.1/Bluebeam.Revu.21.locale.zh-CN.yaml b/manifests/b/Bluebeam/Revu/21/21.6.1/Bluebeam.Revu.21.locale.zh-CN.yaml new file mode 100644 index 0000000000000..c7f4d683cfdea --- /dev/null +++ b/manifests/b/Bluebeam/Revu/21/21.6.1/Bluebeam.Revu.21.locale.zh-CN.yaml @@ -0,0 +1,44 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Bluebeam.Revu.21 +PackageVersion: 21.6.1 +PackageLocale: zh-CN +Publisher: Bluebeam, Inc. +PublisherUrl: https://www.bluebeam.com/ +PublisherSupportUrl: https://support.bluebeam.com/ +PrivacyUrl: https://www.bluebeam.com/legal/privacy-policy/ +Author: Bluebeam, Inc. +PackageName: Bluebeam Revu 21 +PackageUrl: https://www.bluebeam.com/download/ +License: 专有软件 +LicenseUrl: https://www.bluebeam.com/legal/terms-of-use/ +Copyright: Copyright © 2002-2024 Bluebeam, Inc. All rights reserved. +CopyrightUrl: https://www.bluebeam.com/legal/intellectual-property/ +ShortDescription: 标记 PDF 文件,构建自定义工作流程,并从任何地方进行实时协作。 +Description: Revu 是 Bluebeam 的基础项目效率和协作解决方案,可让您在电脑上与项目合作伙伴一起创建、编辑、标记和组织 PDF。 +Tags: +- pdf +- 协作 +- 协同 +- 批注 +- 查看器 +- 标注 +- 注释 +- 编辑 +- 编辑器 +- 阅读 +- 阅读器 +ReleaseNotesUrl: https://support.bluebeam.com/articles/revu-21-release-notes/ +PurchaseUrl: https://www.bluebeam.com/pricing/ +Documentations: +- DocumentLabel: 帮助 + DocumentUrl: https://support.bluebeam.com/online-help/revu21/Content/RevuHelp/Dashboard.htm +- DocumentLabel: 学习中心 + DocumentUrl: https://www.bluebeam.com/resources/learning-center/ +- DocumentLabel: 培训视频 + DocumentUrl: https://support.bluebeam.com/training-videos/ +- DocumentLabel: 常见问题 + DocumentUrl: https://www.bluebeam.com/contact/#faqs +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bluebeam/Revu/21/21.6.1/Bluebeam.Revu.21.yaml b/manifests/b/Bluebeam/Revu/21/21.6.1/Bluebeam.Revu.21.yaml new file mode 100644 index 0000000000000..55ca1ee8f8b7b --- /dev/null +++ b/manifests/b/Bluebeam/Revu/21/21.6.1/Bluebeam.Revu.21.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Bluebeam.Revu.21 +PackageVersion: 21.6.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Brave/Brave/Nightly/138.1.82.61/Brave.Brave.Nightly.installer.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.61/Brave.Brave.Nightly.installer.yaml new file mode 100644 index 0000000000000..b7407c21a6177 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.61/Brave.Brave.Nightly.installer.yaml @@ -0,0 +1,86 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Brave.Brave.Nightly +PackageVersion: 138.1.82.61 +InstallerType: exe +ExpectedReturnCodes: +- InstallerReturnCode: -2147219440 + ReturnResponse: cancelledByUser +- InstallerReturnCode: -2147219416 + ReturnResponse: alreadyInstalled +- InstallerReturnCode: -2147218431 + ReturnResponse: invalidParameter +- InstallerReturnCode: -2147024809 + ReturnResponse: invalidParameter +UpgradeBehavior: install +Protocols: +- ftp +- http +- https +- mailto +- tel +FileExtensions: +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: BraveSoftware Brave-Browser-Nightly +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.61/BraveBrowserStandaloneSilentNightlySetup32.exe + InstallerSha256: 3B17AA61ABC8E056EAABD6223033DCFA2BFC0C71E3C5748BDC8AE1D914657A3D + InstallModes: + - silent +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.61/BraveBrowserStandaloneNightlySetup32.exe + InstallerSha256: F2572C54678BE949BD4B0CCDE6C0F153682424930F6D5DDD9D64EF35F6455552 + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: /silent /install + SilentWithProgress: /silent /install + ElevationRequirement: elevationRequired +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.61/BraveBrowserStandaloneSilentNightlySetup.exe + InstallerSha256: 9FFF743BBF873E31C5A5097C6C8A31A769993C268D4B985CD6253789785107BC + InstallModes: + - silent +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.61/BraveBrowserStandaloneNightlySetup.exe + InstallerSha256: 1DEE207629879637159DA72D5A58874A14133DDC09C99C188634B2620DE84854 + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: /silent /install + SilentWithProgress: /silent /install + ElevationRequirement: elevationRequired +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.61/BraveBrowserStandaloneSilentNightlySetupArm64.exe + InstallerSha256: 21635B8C756A552B51B9547A90B4C1A6034EA0F70A1AC9797EDED2F21768412C + InstallModes: + - silent +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.61/BraveBrowserStandaloneNightlySetupArm64.exe + InstallerSha256: D861209CB113880694B4415FF2E68CB0B4231DC336C3FEC446B422F68F06CD8D + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: /silent /install + SilentWithProgress: /silent /install + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Brave/Brave/Nightly/138.1.82.61/Brave.Brave.Nightly.locale.en-US.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.61/Brave.Brave.Nightly.locale.en-US.yaml new file mode 100644 index 0000000000000..9caa71d5ce584 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.61/Brave.Brave.Nightly.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Brave.Brave.Nightly +PackageVersion: 138.1.82.61 +PackageLocale: en-US +Publisher: Brave Software Inc +PublisherUrl: https://brave.com +PrivacyUrl: https://brave.com/privacy/browser +Author: Brave Software, Inc. +PackageName: Brave Nightly +PackageUrl: https://brave.com/download-nightly +License: MPL-2.0 +LicenseUrl: https://github.com/brave/brave-browser/blob/master/LICENSE +Copyright: Copyright © 2024 The Brave Authors. All rights reserved. +CopyrightUrl: https://brave.com/terms-of-use +ShortDescription: Brave Nightly is our testing and development version of Brave. Releases are updated every night. +Description: |- + Nightly is our testing and development version of Brave. + The releases are updated every night and may contain bugs that can result in data loss. + Nightly automatically sends us crash reports when things go wrong. +Tags: +- browser +- chromium +- internet +- privacy +- web +- webpage +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://brave.com/faq +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Brave/Brave/Nightly/138.1.82.61/Brave.Brave.Nightly.locale.zh-CN.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.61/Brave.Brave.Nightly.locale.zh-CN.yaml new file mode 100644 index 0000000000000..4715473cd1857 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.61/Brave.Brave.Nightly.locale.zh-CN.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Brave.Brave.Nightly +PackageVersion: 138.1.82.61 +PackageLocale: zh-CN +Publisher: Brave Software Inc +PublisherUrl: https://brave.com/zh +PrivacyUrl: https://brave.com/privacy/browser +Author: Brave Software, Inc. +PackageName: Brave Nightly +PackageUrl: https://brave.com/download-nightly +License: MPL-2.0 +LicenseUrl: https://github.com/brave/brave-browser/blob/master/LICENSE +Copyright: 版权所有2024 Brave Software Inc。保留所有权利。 +CopyrightUrl: https://brave.com/terms-of-use +ShortDescription: Brave Nightly 是 Brave 的测试和开发版本,每天晚上更新。 +Description: Nightly 是 Brave 的测试和开发版本,每天晚上更新,可能包含导致数据丢失的错误。当出现问题时,Nightly 会自动向我们发送崩溃报告。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +- 隐私 +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://brave.com/zh/faq +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Brave/Brave/Nightly/138.1.82.61/Brave.Brave.Nightly.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.61/Brave.Brave.Nightly.yaml new file mode 100644 index 0000000000000..49e46d0190722 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.61/Brave.Brave.Nightly.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Brave.Brave.Nightly +PackageVersion: 138.1.82.61 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BrinkSoftware/IbisCalculerenVoorInstallatie/3.0.2505.10701/BrinkSoftware.IbisCalculerenVoorInstallatie.installer.yaml b/manifests/b/BrinkSoftware/IbisCalculerenVoorInstallatie/3.0.2505.10701/BrinkSoftware.IbisCalculerenVoorInstallatie.installer.yaml deleted file mode 100644 index 9a07f56a853ce..0000000000000 --- a/manifests/b/BrinkSoftware/IbisCalculerenVoorInstallatie/3.0.2505.10701/BrinkSoftware.IbisCalculerenVoorInstallatie.installer.yaml +++ /dev/null @@ -1,72 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: BrinkSoftware.IbisCalculerenVoorInstallatie -PackageVersion: 3.0.2505.10701 -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: 1641 - ReturnResponse: rebootInitiated -- InstallerReturnCode: 1640 - ReturnResponse: blockedByPolicy -- 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 -ProductCode: '{F6D90BA8-FC96-43A4-BC5E-B7830DD26116}' -AppsAndFeaturesEntries: -- UpgradeCode: '{A6FDEAB2-B15B-4730-A5A7-49CEA8781058}' - InstallerType: msi -Installers: -- Architecture: x64 - InstallerUrl: https://2804826.fs1.hubspotusercontent-na1.net/hubfs/2804826/Downloads%20ibis.nl%20en%20ibis.be/Installatietechniek/IbisCalculerenVoorInstallatie_Setup_x64.exe - InstallerSha256: D806B2C69F1845D0F1129149D9E7F17FE9EA6552914EB7FC2C4C372AC15CA411 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/b/BrinkSoftware/IbisCalculerenVoorInstallatie/3.0.2505.10701/BrinkSoftware.IbisCalculerenVoorInstallatie.locale.en-US.yaml b/manifests/b/BrinkSoftware/IbisCalculerenVoorInstallatie/3.0.2505.10701/BrinkSoftware.IbisCalculerenVoorInstallatie.locale.en-US.yaml deleted file mode 100644 index 85029b74e8fff..0000000000000 --- a/manifests/b/BrinkSoftware/IbisCalculerenVoorInstallatie/3.0.2505.10701/BrinkSoftware.IbisCalculerenVoorInstallatie.locale.en-US.yaml +++ /dev/null @@ -1,20 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: BrinkSoftware.IbisCalculerenVoorInstallatie -PackageVersion: 3.0.2505.10701 -PackageLocale: en-US -Publisher: Brink Software B.V. -PublisherUrl: https://www.ibis.nl/ -PublisherSupportUrl: https://www.ibis.nl/contact -PrivacyUrl: https://www.ibis.nl/privacy-policy -Author: Brink Software B.V. -PackageName: Ibis Calculeren voor Installatietechniek -PackageUrl: https://www.ibis.nl/producten/calculeren-en-kostenraming/installatietechniek -License: Proprietary -Copyright: Copyright © 2025 ibis.nl -ShortDescription: Calculation and Cost Estimation for Installation Technology -Description: In recent years, installations have played an increasingly important role in architectural and civil engineering projects. This is because they have become technically more complex and have a greater impact on the sustainability and user comfort of buildings, structures, and infrastructure routes. For Brink, these are reasons to expand support for them in a number of applications. -ReleaseNotesUrl: https://ibiscalculeren.ibis.nl/installatietechniek/help/index.html?releasenotes.html -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/b/BrinkSoftware/IbisCalculerenVoorInstallatie/3.0.2505.10701/BrinkSoftware.IbisCalculerenVoorInstallatie.locale.zh-CN.yaml b/manifests/b/BrinkSoftware/IbisCalculerenVoorInstallatie/3.0.2505.10701/BrinkSoftware.IbisCalculerenVoorInstallatie.locale.zh-CN.yaml deleted file mode 100644 index 4c02d09f17c4e..0000000000000 --- a/manifests/b/BrinkSoftware/IbisCalculerenVoorInstallatie/3.0.2505.10701/BrinkSoftware.IbisCalculerenVoorInstallatie.locale.zh-CN.yaml +++ /dev/null @@ -1,11 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: BrinkSoftware.IbisCalculerenVoorInstallatie -PackageVersion: 3.0.2505.10701 -PackageLocale: zh-CN -License: 专有软件 -ShortDescription: 安装技术计算与成本估算 -Description: 近年来,安装技术在建筑与土木工程项目中扮演着日益重要的角色。由于技术复杂性不断提升,且对建筑物、结构及基础设施轨道的可持续性与使用舒适度产生更大影响,Brink 公司决定在多项应用中扩展对其的支持。 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/c/CDESoftware/BTM-2023/23.04.0003/CDESoftware.BTM-2023.installer.yaml b/manifests/c/CDESoftware/BTM-2023/23.04.0003/CDESoftware.BTM-2023.installer.yaml deleted file mode 100644 index 3a38ff0c42952..0000000000000 --- a/manifests/c/CDESoftware/BTM-2023/23.04.0003/CDESoftware.BTM-2023.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# Automatically updated by the winget bot at 2025/May/28 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: CDESoftware.BTM-2023 -PackageVersion: 23.04.0003 -InstallerType: exe -InstallerSwitches: - Silent: /exenoui /qn /norestart - SilentWithProgress: /exenoui /qn /norestart -Installers: -- Architecture: x86 - InstallerUrl: https://static.cdesoftware.com/btm2023/BTM2023INSTALLER.EXE - InstallerSha256: 0AB4BB386751456B60CE8C353A9588B3B486A65D7706C97184B4DED47E27023C -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/c/CDESoftware/BTM-2023/23.04.0003/CDESoftware.BTM-2023.locale.en-US.yaml b/manifests/c/CDESoftware/BTM-2023/23.04.0003/CDESoftware.BTM-2023.locale.en-US.yaml deleted file mode 100644 index c1546d286c693..0000000000000 --- a/manifests/c/CDESoftware/BTM-2023/23.04.0003/CDESoftware.BTM-2023.locale.en-US.yaml +++ /dev/null @@ -1,13 +0,0 @@ -# Automatically updated by the winget bot at 2025/May/28 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: CDESoftware.BTM-2023 -PackageVersion: 23.04.0003 -PackageLocale: en-US -Publisher: CDE Software -PackageName: BTM-2023 -License: Commercial -Copyright: Copyright (C) 2025 CDE Software -ShortDescription: BTM-2023 Installer -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/c/CMU/CLAN/8.35.00/CMU.CLAN.installer.yaml b/manifests/c/CMU/CLAN/8.35.00/CMU.CLAN.installer.yaml new file mode 100644 index 0000000000000..3d02e90e3fcdb --- /dev/null +++ b/manifests/c/CMU/CLAN/8.35.00/CMU.CLAN.installer.yaml @@ -0,0 +1,26 @@ +# Automatically updated by the winget bot at 2025/Jul/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CMU.CLAN +PackageVersion: 8.35.00 +InstallerType: exe +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /qn + SilentWithProgress: /qb +ProductCode: "{00A4C5E6-6DB1-486C-99FF-D9269488C955}" +ReleaseDate: 2025-06-20 +AppsAndFeaturesEntries: +- InstallerType: msi +Installers: +- Architecture: x86 + InstallerUrl: https://dali.talkbank.org/clan/clanwin.exe + InstallerSha256: DD6E335E24CB4F8A69C68F8DCFA0E33BC8326D377CF4C4C2B100CC0CDF516952 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CMU/CLAN/8.35.00/CMU.CLAN.locale.en-US.yaml b/manifests/c/CMU/CLAN/8.35.00/CMU.CLAN.locale.en-US.yaml new file mode 100644 index 0000000000000..4f01bb5c78ea6 --- /dev/null +++ b/manifests/c/CMU/CLAN/8.35.00/CMU.CLAN.locale.en-US.yaml @@ -0,0 +1,18 @@ +# Automatically updated by the winget bot at 2025/Jul/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: CMU.CLAN +PackageVersion: 8.35.00 +PackageLocale: en-US +Publisher: CMU +PublisherUrl: https://talkbank.org/ +PackageName: CLAN +PackageUrl: https://dali.talkbank.org/clan/ +License: GNU General Public License +Copyright: Copyright (C) 2022 CMU +ShortDescription: > + The acronym CLAN stands for Computerized Language ANalysis. CLAN is designed specifically to analyze data transcribed in the CHAT format. This is the format used in the various segments of the TalkBank system. +Moniker: clan +ReleaseNotesUrl: https://dali.talkbank.org/clan/changes.txt +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CMU/CLAN/8.35.00/CMU.CLAN.locale.zh-CN.yaml b/manifests/c/CMU/CLAN/8.35.00/CMU.CLAN.locale.zh-CN.yaml new file mode 100644 index 0000000000000..3a66a52ef395b --- /dev/null +++ b/manifests/c/CMU/CLAN/8.35.00/CMU.CLAN.locale.zh-CN.yaml @@ -0,0 +1,17 @@ +# Automatically updated by the winget bot at 2025/Jul/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CMU.CLAN +PackageVersion: 8.35.00 +PackageLocale: zh-CN +Publisher: CMU +PublisherUrl: https://talkbank.org/ +PackageName: CLAN +PackageUrl: https://dali.talkbank.org/clan/ +License: GNU General Public License +Copyright: Copyright (C) 2022 CMU +ShortDescription: > + CLAN 代表计算机语言分析(Computerized Language ANalysis)。CLAN 专为分析以 CHAT 格式转录的数据而设计。该格式用于 TalkBank 系统的各个部分。 +ReleaseNotesUrl: https://dali.talkbank.org/clan/changes.txt +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CMU/CLAN/8.35.00/CMU.CLAN.yaml b/manifests/c/CMU/CLAN/8.35.00/CMU.CLAN.yaml new file mode 100644 index 0000000000000..93e93500ce0ad --- /dev/null +++ b/manifests/c/CMU/CLAN/8.35.00/CMU.CLAN.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jul/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: CMU.CLAN +PackageVersion: 8.35.00 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CPUID/CPU-Z/2.16/CPUID.CPU-Z.installer.yaml b/manifests/c/CPUID/CPU-Z/2.16/CPUID.CPU-Z.installer.yaml new file mode 100644 index 0000000000000..104adb5d0bee1 --- /dev/null +++ b/manifests/c/CPUID/CPU-Z/2.16/CPUID.CPU-Z.installer.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CPUID.CPU-Z +PackageVersion: '2.16' +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Installers: +- InstallerLocale: en-US + Architecture: x86 + InstallerUrl: https://download.cpuid.com/cpu-z/cpu-z_2.16-en.exe + InstallerSha256: 9D2E3B817F89CAADD7D373A0032CF2443844BBE22EEBDCCA0A758D2A91924871 +- InstallerLocale: en-US + Architecture: x64 + InstallerUrl: https://download.cpuid.com/cpu-z/cpu-z_2.16-en.exe + InstallerSha256: 9D2E3B817F89CAADD7D373A0032CF2443844BBE22EEBDCCA0A758D2A91924871 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CPUID/CPU-Z/2.16/CPUID.CPU-Z.locale.en-US.yaml b/manifests/c/CPUID/CPU-Z/2.16/CPUID.CPU-Z.locale.en-US.yaml new file mode 100644 index 0000000000000..0939c4a6a72e1 --- /dev/null +++ b/manifests/c/CPUID/CPU-Z/2.16/CPUID.CPU-Z.locale.en-US.yaml @@ -0,0 +1,39 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: CPUID.CPU-Z +PackageVersion: '2.16' +PackageLocale: en-US +Publisher: CPUID, Inc. +PublisherUrl: https://www.cpuid.com/ +PublisherSupportUrl: https://www.cpuid.com/contact.html +PrivacyUrl: https://www.cpuid.com/privacy-policy.html +Author: Franck Delattre, CPUID +PackageName: CPUID CPU-Z +PackageUrl: https://www.cpuid.com/softwares/cpu-z.html +License: Freeware +LicenseUrl: https://www.cpuid.com/terms-of-service.html +Copyright: CPUID © 2001-2025 - All website content subjected to copyright +ShortDescription: System information software. +Description: |- + CPU-Z is a freeware that gathers information on some of the main devices of your system + - Processor name and number, codename, process, package, cache levels. + - Mainboard and chipset. + - Memory type, size, timings, and module specifications (SPD). + - Real time measurement of each cores internal frequency, memory frequency. +Moniker: cpu-z +Tags: +- amd +- cpu +- cpuid +- cpuz +- hardware +- intel +- memory +- motherboard +- processor +- system +- system-utility +- utility +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CPUID/CPU-Z/2.16/CPUID.CPU-Z.locale.zh-CN.yaml b/manifests/c/CPUID/CPU-Z/2.16/CPUID.CPU-Z.locale.zh-CN.yaml new file mode 100644 index 0000000000000..cffc418c6db68 --- /dev/null +++ b/manifests/c/CPUID/CPU-Z/2.16/CPUID.CPU-Z.locale.zh-CN.yaml @@ -0,0 +1,37 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CPUID.CPU-Z +PackageVersion: '2.16' +PackageLocale: zh-CN +Publisher: CPUID, Inc. +PublisherUrl: https://www.cpuid.com/ +PublisherSupportUrl: https://www.cpuid.com/contact.html +PrivacyUrl: https://www.cpuid.com/privacy-policy.html +Author: 弗兰克·德拉特 +PackageName: CPUID CPU-Z +PackageUrl: https://www.cpuid.com/softwares/cpu-z.html +License: 免费软件 +LicenseUrl: https://www.cpuid.com/terms-of-service.html +Copyright: CPUID © 2001-2025 - All website content subjected to copyright +ShortDescription: 系统信息软件 +Description: |- + CPU-Z 是一款免费软件,可以收集系统中一些主要设备的信息 + - 处理器名称、数量、代号、工艺、插槽、各级缓存 + - 主板和芯片组 + - 内存类型、容量、时序、SPD + - 实时测量每个核心的内部频率和内存频率 +Tags: +- amd +- cpu +- cpuid +- intel +- 主板 +- 内存 +- 处理器 +- 工具 +- 硬件 +- 系统 +- 英特尔 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CPUID/CPU-Z/2.16/CPUID.CPU-Z.yaml b/manifests/c/CPUID/CPU-Z/2.16/CPUID.CPU-Z.yaml new file mode 100644 index 0000000000000..62a2f0d0c545e --- /dev/null +++ b/manifests/c/CPUID/CPU-Z/2.16/CPUID.CPU-Z.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: CPUID.CPU-Z +PackageVersion: '2.16' +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/ChemTableSoftware/FilesInspector/4.30/ChemTableSoftware.FilesInspector.installer.yaml b/manifests/c/ChemTableSoftware/FilesInspector/4.30/ChemTableSoftware.FilesInspector.installer.yaml index b617bbd42b4e5..97c4c94d87b66 100644 --- a/manifests/c/ChemTableSoftware/FilesInspector/4.30/ChemTableSoftware.FilesInspector.installer.yaml +++ b/manifests/c/ChemTableSoftware/FilesInspector/4.30/ChemTableSoftware.FilesInspector.installer.yaml @@ -12,7 +12,7 @@ InstallationMetadata: DefaultInstallLocation: '%ProgramFiles%\Files Inspector' Installers: - Architecture: x86 - InstallerUrl: https://files.chemtable.com/fi/files-inspector-setup.exe + InstallerUrl: https://files.chemtable.com/older/FI/fi430.exe InstallerSha256: F97B59AF32D919FF247CC45674153BD4FED206B9F1A948F77353957185239E99 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/c/ChemTableSoftware/RegOrganizer/9.71/ChemTableSoftware.RegOrganizer.installer.yaml b/manifests/c/ChemTableSoftware/RegOrganizer/9.71/ChemTableSoftware.RegOrganizer.installer.yaml index 4313ff60a7c94..64d3dea14078e 100644 --- a/manifests/c/ChemTableSoftware/RegOrganizer/9.71/ChemTableSoftware.RegOrganizer.installer.yaml +++ b/manifests/c/ChemTableSoftware/RegOrganizer/9.71/ChemTableSoftware.RegOrganizer.installer.yaml @@ -12,7 +12,7 @@ InstallationMetadata: DefaultInstallLocation: '%ProgramFiles%\Reg Organizer' Installers: - Architecture: x86 - InstallerUrl: https://files.chemtable.com/ro/reg-organizer-setup.exe + InstallerUrl: https://files.chemtable.com/older/RO/RO971.exe InstallerSha256: 3CD8ABEF2936AAB107BA96798C225AE2F4C2375F01B42DC260A89E4CD6C7027A ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/c/ChemTableSoftware/SoftOrganizer/10.10/ChemTableSoftware.SoftOrganizer.installer.yaml b/manifests/c/ChemTableSoftware/SoftOrganizer/10.10/ChemTableSoftware.SoftOrganizer.installer.yaml index f768930e099cd..d3c22bcfb230b 100644 --- a/manifests/c/ChemTableSoftware/SoftOrganizer/10.10/ChemTableSoftware.SoftOrganizer.installer.yaml +++ b/manifests/c/ChemTableSoftware/SoftOrganizer/10.10/ChemTableSoftware.SoftOrganizer.installer.yaml @@ -13,7 +13,7 @@ InstallationMetadata: DefaultInstallLocation: '%ProgramFiles%\Soft Organizer' Installers: - Architecture: x86 - InstallerUrl: https://files.chemtable.com/so/soft-organizer-setup.exe + InstallerUrl: https://files.chemtable.com/older/SO/SO1010.exe InstallerSha256: E8A1D4B115691C6911697C2135EF1B3BD8CFC57E6664BAF84BB4B762D04CBC4E ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/c/Chromium/ChromeDriver/138.0.7204.94/Chromium.ChromeDriver.installer.yaml b/manifests/c/Chromium/ChromeDriver/138.0.7204.94/Chromium.ChromeDriver.installer.yaml new file mode 100644 index 0000000000000..5503d447d9001 --- /dev/null +++ b/manifests/c/Chromium/ChromeDriver/138.0.7204.94/Chromium.ChromeDriver.installer.yaml @@ -0,0 +1,21 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Chromium.ChromeDriver +PackageVersion: 138.0.7204.94 +InstallerType: zip +NestedInstallerType: portable +ReleaseDate: 2025-06-27 +Installers: +- Architecture: x86 + NestedInstallerFiles: + - RelativeFilePath: chromedriver-win32/chromedriver.exe + InstallerUrl: https://storage.googleapis.com/chrome-for-testing-public/138.0.7204.94/win32/chromedriver-win32.zip + InstallerSha256: 7510CC95C048BC602F084F7DCDAE3546245D0FF62592807058B63D03BE761E34 +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: chromedriver-win64/chromedriver.exe + InstallerUrl: https://storage.googleapis.com/chrome-for-testing-public/138.0.7204.94/win64/chromedriver-win64.zip + InstallerSha256: 0084800E3486FE632D7BF67B3937936846A881A65792882EAFD406AA32498A78 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Chromium/ChromeDriver/138.0.7204.94/Chromium.ChromeDriver.locale.en-US.yaml b/manifests/c/Chromium/ChromeDriver/138.0.7204.94/Chromium.ChromeDriver.locale.en-US.yaml new file mode 100644 index 0000000000000..311e26481e695 --- /dev/null +++ b/manifests/c/Chromium/ChromeDriver/138.0.7204.94/Chromium.ChromeDriver.locale.en-US.yaml @@ -0,0 +1,18 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Chromium.ChromeDriver +PackageVersion: 138.0.7204.94 +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.10.0 diff --git a/manifests/c/Chromium/ChromeDriver/138.0.7204.94/Chromium.ChromeDriver.yaml b/manifests/c/Chromium/ChromeDriver/138.0.7204.94/Chromium.ChromeDriver.yaml new file mode 100644 index 0000000000000..1e2037f24c6bf --- /dev/null +++ b/manifests/c/Chromium/ChromeDriver/138.0.7204.94/Chromium.ChromeDriver.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Chromium.ChromeDriver +PackageVersion: 138.0.7204.94 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/Comfy/ComfyUI-Desktop/0.4.55/Comfy.ComfyUI-Desktop.installer.yaml b/manifests/c/Comfy/ComfyUI-Desktop/0.4.55/Comfy.ComfyUI-Desktop.installer.yaml new file mode 100644 index 0000000000000..9e2fd98d609e6 --- /dev/null +++ b/manifests/c/Comfy/ComfyUI-Desktop/0.4.55/Comfy.ComfyUI-Desktop.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Comfy.ComfyUI-Desktop +PackageVersion: 0.4.55 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f0c0feae-2b28-5d68-8c25-d93f41e47df2 +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x64 + InstallerUrl: https://download.todesktop.com/241012ess7yxs0e/ComfyUI%20Setup%200.4.55%20-%20Build%20250708fuy67r2wn-x64.exe + InstallerSha256: 4C55DC1CED1C26AA7E6077371823E8D0D5ABE48C9993BFE8AE9D5119C6E0DD62 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Comfy/ComfyUI-Desktop/0.4.55/Comfy.ComfyUI-Desktop.locale.en-US.yaml b/manifests/c/Comfy/ComfyUI-Desktop/0.4.55/Comfy.ComfyUI-Desktop.locale.en-US.yaml new file mode 100644 index 0000000000000..39a23cf8a5f08 --- /dev/null +++ b/manifests/c/Comfy/ComfyUI-Desktop/0.4.55/Comfy.ComfyUI-Desktop.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.10.0.schema.json + +PackageIdentifier: Comfy.ComfyUI-Desktop +PackageVersion: 0.4.55 +PackageLocale: en-US +Publisher: Comfy Org +PublisherUrl: https://comfy.org/ +PublisherSupportUrl: https://github.com/Comfy-Org/desktop/issues +PackageName: ComfyUI +PackageUrl: https://github.com/Comfy-Org/desktop +License: GPL-3.0 +LicenseUrl: https://github.com/Comfy-Org/desktop/blob/HEAD/LICENSE +Copyright: © 2024 Comfy Org +ShortDescription: A desktop app for ComfyUI, the most powerful and modular diffusion model GUI, api and backend with a graph/nodes interface +Description: |- + ComfyUI Desktop is a packaged way to use ComfyUI and comes bundled with a few things: + - Stable version of ComfyUI from releases + - ComfyUI_frontend + - ComfyUI-Manager + - uv + On startup, it will install all the necessary python dependencies with uv and start the ComfyUI server. The app will automatically update with stable releases of ComfyUI, ComfyUI-Manager, and the uv executable as well as some desktop specific features. +Moniker: comfyui +Tags: +- comfyui +- diffusion +ReleaseNotes: |- + What's Changed + - [CI] Add GH release steps to Claude release command by @webfiltered in https://github.com/Comfy-Org/desktop/pull/1217 + - [CI] Build frontend from tag / optional branch by @webfiltered in https://github.com/Comfy-Org/desktop/pull/1218 + - v0.4.55: Bump ComfyUI + templates for moonvalley. by @robinjhuang in https://github.com/Comfy-Org/desktop/pull/1219 + Full Changelog: https://github.com/Comfy-Org/desktop/compare/v0.4.54...v0.4.55 +ReleaseNotesUrl: https://github.com/Comfy-Org/desktop/releases/tag/v0.4.5 +Documentations: +- DocumentLabel: User Guide + DocumentUrl: https://comfyorg.notion.site/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Comfy/ComfyUI-Desktop/0.4.55/Comfy.ComfyUI-Desktop.locale.zh-CN.yaml b/manifests/c/Comfy/ComfyUI-Desktop/0.4.55/Comfy.ComfyUI-Desktop.locale.zh-CN.yaml new file mode 100644 index 0000000000000..830377dcf7cec --- /dev/null +++ b/manifests/c/Comfy/ComfyUI-Desktop/0.4.55/Comfy.ComfyUI-Desktop.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Comfy.ComfyUI-Desktop +PackageVersion: 0.4.55 +PackageLocale: zh-CN +ShortDescription: ComfyUI 的桌面应用程序。ComfyUI 是一款强大的模块化扩散模型 GUI、API 和后台,具有图形/节点界面 +Description: |- + ComfyUI Desktop 打包了 ComfyUI,包含: + - 取自 releases 的稳定版 ComfyUI + - ComfyUI_frontend + - ComfyUI-Manager + - uv + 软件在启动时会用 uv 安装所有必要的 Python 依赖项,并启动 ComfyUI 服务器。应用程序会自动更新 ComfyUI、ComfyUI-Manager 和 uv 可执行文件的稳定版本,以及一些桌面特定功能。 +Documentations: +- DocumentLabel: 用户手册 + DocumentUrl: https://comfyorg.notion.site/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Comfy/ComfyUI-Desktop/0.4.55/Comfy.ComfyUI-Desktop.yaml b/manifests/c/Comfy/ComfyUI-Desktop/0.4.55/Comfy.ComfyUI-Desktop.yaml new file mode 100644 index 0000000000000..a33d51dde8f9f --- /dev/null +++ b/manifests/c/Comfy/ComfyUI-Desktop/0.4.55/Comfy.ComfyUI-Desktop.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Comfy.ComfyUI-Desktop +PackageVersion: 0.4.55 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/Commitlint/Commitlint/1.8.2/Commitlint.Commitlint.installer.yaml b/manifests/c/Commitlint/Commitlint/1.8.2/Commitlint.Commitlint.installer.yaml new file mode 100644 index 0000000000000..50aa6c703ed8b --- /dev/null +++ b/manifests/c/Commitlint/Commitlint/1.8.2/Commitlint.Commitlint.installer.yaml @@ -0,0 +1,22 @@ +# Created with WinGet Releaser using komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Commitlint.Commitlint +PackageVersion: 1.8.2 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +ProductCode: '{3E4863DD-CE71-4DDB-874D-1C171CA6515A}' +ReleaseDate: 2025-07-07 +AppsAndFeaturesEntries: +- Publisher: jurien.dev + ProductCode: '{3E4863DD-CE71-4DDB-874D-1C171CA6515A}' + UpgradeCode: '{66341A27-0B50-43D9-82AC-B9E5E3C19953}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%/Commitlint' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/jurienhamaker/commitlint/releases/download/v1.8.2/commitlint_installer.msi + InstallerSha256: A7C754C1D69231F245D50A0C49385EB9A64FABCBA5140F19610A521198158918 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Commitlint/Commitlint/1.8.2/Commitlint.Commitlint.locale.en-US.yaml b/manifests/c/Commitlint/Commitlint/1.8.2/Commitlint.Commitlint.locale.en-US.yaml new file mode 100644 index 0000000000000..04ff4466d9d64 --- /dev/null +++ b/manifests/c/Commitlint/Commitlint/1.8.2/Commitlint.Commitlint.locale.en-US.yaml @@ -0,0 +1,21 @@ +# Created with WinGet Releaser using komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Commitlint.Commitlint +PackageVersion: 1.8.2 +PackageLocale: en-US +Publisher: Jurien Hamaker +PublisherUrl: https://github.com/jurienhamaker +PublisherSupportUrl: https://github.com/jurienhamaker/commitlint/issues +PackageName: Commitlint +PackageUrl: https://github.com/jurienhamaker/commitlint +License: MIT +LicenseUrl: https://github.com/jurienhamaker/commitlint/blob/HEAD/LICENSE +ShortDescription: A lightweight, fast, and cross-platform CLI tool for linting Git commit messages. +ReleaseNotes: |- + 1.8.2 (2025-07-07) + Bug Fixes + - utils/case: Make sure we lowercase everything after the first word for sentence case (3b10616) +ReleaseNotesUrl: https://github.com/jurienhamaker/commitlint/releases/tag/v1.8.2 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Commitlint/Commitlint/1.8.2/Commitlint.Commitlint.yaml b/manifests/c/Commitlint/Commitlint/1.8.2/Commitlint.Commitlint.yaml new file mode 100644 index 0000000000000..4ac3595a576a8 --- /dev/null +++ b/manifests/c/Commitlint/Commitlint/1.8.2/Commitlint.Commitlint.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Commitlint.Commitlint +PackageVersion: 1.8.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CreativeTechnology/OpenAL/1.1/CreativeTechnology.OpenAL.installer.yaml b/manifests/c/CreativeTechnology/OpenAL/1.1/CreativeTechnology.OpenAL.installer.yaml new file mode 100644 index 0000000000000..74a64aaa28159 --- /dev/null +++ b/manifests/c/CreativeTechnology/OpenAL/1.1/CreativeTechnology.OpenAL.installer.yaml @@ -0,0 +1,20 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CreativeTechnology.OpenAL +PackageVersion: '1.1' +InstallerType: zip +ProductCode: OpenAL +NestedInstallerType: exe +NestedInstallerFiles: +- RelativeFilePath: oalinst.exe +UpgradeBehavior: install +ReleaseDate: 2015-07-25 +InstallerSwitches: + Silent: /s +Installers: +- Architecture: x86 + InstallerUrl: https://openal.org/downloads/oalinst.zip + InstallerSha256: D165BCB7628FD950D14847585468CC11943B2A1DA92A59A839D397C68F9D4B06 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CreativeTechnology/OpenAL/1.1/CreativeTechnology.OpenAL.locale.en-US.yaml b/manifests/c/CreativeTechnology/OpenAL/1.1/CreativeTechnology.OpenAL.locale.en-US.yaml new file mode 100644 index 0000000000000..6613335c09a58 --- /dev/null +++ b/manifests/c/CreativeTechnology/OpenAL/1.1/CreativeTechnology.OpenAL.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: CreativeTechnology.OpenAL +PackageVersion: '1.1' +PackageLocale: en-US +Publisher: Creative Technology Ltd. +PublisherUrl: https://www.creative.com/ +PublisherSupportUrl: https://support.creative.com/ +Author: Creative Technology Ltd. +PackageName: OpenAL +PackageUrl: https://openal.org/ +License: Freeware +Copyright: Copyright © 2009 +ShortDescription: OpenAL is a cross-platform 3D audio API appropriate for use with gaming applications and many other types of audio applications. +Description: OpenAL is a cross-platform 3D audio API appropriate for use with gaming applications and many other types of audio applications. +Moniker: openal +Tags: +- 3d-audio +- api +- creative +- eax +- efx +Documentations: +- DocumentLabel: Specification + DocumentUrl: https://openal.org/documentation/openal-1.1-specification.pdf +- DocumentLabel: Programmer's Guide + DocumentUrl: https://openal.org/documentation/OpenAL_Programmers_Guide.pdf +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CreativeTechnology/OpenAL/1.1/CreativeTechnology.OpenAL.yaml b/manifests/c/CreativeTechnology/OpenAL/1.1/CreativeTechnology.OpenAL.yaml new file mode 100644 index 0000000000000..e0eb5e520ffb8 --- /dev/null +++ b/manifests/c/CreativeTechnology/OpenAL/1.1/CreativeTechnology.OpenAL.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: CreativeTechnology.OpenAL +PackageVersion: '1.1' +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/charmbracelet/soft-serve/0.9.1/charmbracelet.soft-serve.installer.yaml b/manifests/c/charmbracelet/soft-serve/0.9.1/charmbracelet.soft-serve.installer.yaml new file mode 100644 index 0000000000000..b51dcc0381c13 --- /dev/null +++ b/manifests/c/charmbracelet/soft-serve/0.9.1/charmbracelet.soft-serve.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.10.0.schema.json +PackageIdentifier: charmbracelet.soft-serve +PackageVersion: 0.9.1 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-07-03" +Installers: + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: soft-serve_0.9.1_Windows_x86_64\soft.exe + PortableCommandAlias: soft + InstallerUrl: https://github.com/charmbracelet/soft-serve/releases/download/v0.9.1/soft-serve_0.9.1_Windows_x86_64.zip + InstallerSha256: 186269052ccdad8ca82d284ef4d24e370fc56b7542b209acc69eb02a484faeea + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/charmbracelet/soft-serve/0.9.1/charmbracelet.soft-serve.locale.en-US.yaml b/manifests/c/charmbracelet/soft-serve/0.9.1/charmbracelet.soft-serve.locale.en-US.yaml new file mode 100644 index 0000000000000..7e68534f3429d --- /dev/null +++ b/manifests/c/charmbracelet/soft-serve/0.9.1/charmbracelet.soft-serve.locale.en-US.yaml @@ -0,0 +1,14 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +PackageIdentifier: charmbracelet.soft-serve +PackageVersion: 0.9.1 +PackageLocale: en-US +Publisher: charmbracelet +PackageName: soft-serve +PackageUrl: https://charm.sh/ +License: MIT +Copyright: Charmbracelet, Inc +ShortDescription: "A tasty, self-hostable Git server for the command line\U0001F366" +Moniker: soft-serve +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/charmbracelet/soft-serve/0.9.1/charmbracelet.soft-serve.yaml b/manifests/c/charmbracelet/soft-serve/0.9.1/charmbracelet.soft-serve.yaml new file mode 100644 index 0000000000000..5bb19bbdc6254 --- /dev/null +++ b/manifests/c/charmbracelet/soft-serve/0.9.1/charmbracelet.soft-serve.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json +PackageIdentifier: charmbracelet.soft-serve +PackageVersion: 0.9.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Datadog/Agent/7.67.1.1/Datadog.Agent.installer.yaml b/manifests/d/Datadog/Agent/7.67.1.1/Datadog.Agent.installer.yaml new file mode 100644 index 0000000000000..e6447d68618ac --- /dev/null +++ b/manifests/d/Datadog/Agent/7.67.1.1/Datadog.Agent.installer.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Datadog.Agent +PackageVersion: 7.67.1.1 +InstallerLocale: en-US +InstallerType: msi +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /qn + SilentWithProgress: /qb + Custom: /norestart OVERRIDE_INSTALLATION_METHOD=winget +ProductCode: '{C594700A-E6AC-4523-996D-5CC954CBE471}' +Installers: +- Architecture: x64 + InstallerUrl: https://s3.amazonaws.com/ddagent-windows-stable/ddagent-cli-7.67.1.msi + InstallerSha256: 9A2B8B89AC5BED9C4D911ECF1D5396F621585F542D263F994092D7E466492BC2 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/d/Datadog/Agent/7.67.1.1/Datadog.Agent.locale.en-US.yaml b/manifests/d/Datadog/Agent/7.67.1.1/Datadog.Agent.locale.en-US.yaml new file mode 100644 index 0000000000000..48f1ec4c1cdbc --- /dev/null +++ b/manifests/d/Datadog/Agent/7.67.1.1/Datadog.Agent.locale.en-US.yaml @@ -0,0 +1,18 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: Datadog.Agent +PackageVersion: 7.67.1.1 +PackageLocale: en-US +Publisher: Datadog, Inc. +PublisherUrl: https://docs.datadoghq.com/ +PublisherSupportUrl: https://www.datadoghq.com/support/ +PrivacyUrl: https://www.datadoghq.com/legal/privacy/ +Author: Datadog +PackageName: Datadog Agent +License: Apache-2.0 +LicenseUrl: https://github.com/DataDog/datadog-agent/blob/master/LICENSE +Copyright: Copyright Datadog, Inc. +ShortDescription: Datadog helps you monitor your infrastructure and application +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/e/Easeware/DriverEasy/6.1.2.29728/Easeware.DriverEasy.yaml b/manifests/d/Datadog/Agent/7.67.1.1/Datadog.Agent.yaml similarity index 54% rename from manifests/e/Easeware/DriverEasy/6.1.2.29728/Easeware.DriverEasy.yaml rename to manifests/d/Datadog/Agent/7.67.1.1/Datadog.Agent.yaml index 6d9bde2bcdad5..01397f21ca77e 100644 --- a/manifests/e/Easeware/DriverEasy/6.1.2.29728/Easeware.DriverEasy.yaml +++ b/manifests/d/Datadog/Agent/7.67.1.1/Datadog.Agent.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/Jan/16 +# Created using wingetcreate 1.6.5.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json -PackageIdentifier: Easeware.DriverEasy -PackageVersion: 6.1.2.29728 +PackageIdentifier: Datadog.Agent +PackageVersion: 7.67.1.1 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.6.0 diff --git a/manifests/d/Devolutions/Gateway/25.2.2/Devolutions.Gateway.installer.yaml b/manifests/d/Devolutions/Gateway/25.2.2/Devolutions.Gateway.installer.yaml new file mode 100644 index 0000000000000..6cfe92cf9d048 --- /dev/null +++ b/manifests/d/Devolutions/Gateway/25.2.2/Devolutions.Gateway.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Devolutions.Gateway +PackageVersion: 25.2.2 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLDIR="" +UpgradeBehavior: install +ProductCode: '{6CB3E91C-A2FB-4413-A258-91BD04271539}' +ReleaseDate: 2025-07-08 +AppsAndFeaturesEntries: +- UpgradeCode: '{DB3903D6-C451-4393-BD80-EB9F45B90214}' +Installers: +- Architecture: x64 + InstallerUrl: https://cdn.devolutions.net/download/DevolutionsGateway-x86_64-2025.2.2.0.msi + InstallerSha256: FCB8B89B7E6BB6554CA57B5F67F6078C2F47D248E539188EB8DC390577639C59 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Devolutions/Gateway/25.2.2/Devolutions.Gateway.locale.en-US.yaml b/manifests/d/Devolutions/Gateway/25.2.2/Devolutions.Gateway.locale.en-US.yaml new file mode 100644 index 0000000000000..178637eea73b1 --- /dev/null +++ b/manifests/d/Devolutions/Gateway/25.2.2/Devolutions.Gateway.locale.en-US.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Devolutions.Gateway +PackageVersion: 25.2.2 +PackageLocale: en-US +Publisher: Devolutions +PublisherUrl: https://devolutions.net/ +PublisherSupportUrl: https://github.com/Devolutions/devolutions-gateway/issues +PrivacyUrl: https://devolutions.net/legal/privacy +Author: Devolutions inc. +PackageName: Devolutions Gateway +PackageUrl: https://devolutions.net/gateway/ +License: Apache-2.0, MIT +Copyright: Copyright (c) 2006-2025 Devolutions Inc. +CopyrightUrl: https://devolutions.net/legal/software-license-agreements +ShortDescription: Secure remote access management — No VPN required +Description: Devolutions Gateway offers a lightweight alternative to Apache Guacamole and traditional VPNs for organizations requiring secure access to remote network segments. Meant for small deployments, the standalone version is free to install and use (commercial and personal), and offers you a simple web interface as an external launcher to connect to internally hosted services via RDP, SSH, Telnet, VNC, or ARD! +ReleaseNotes: '- Minor update' +ReleaseNotesUrl: https://devolutions.net/gateway/release-notes/#v2025.2.2.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Devolutions/Gateway/25.2.2/Devolutions.Gateway.locale.zh-CN.yaml b/manifests/d/Devolutions/Gateway/25.2.2/Devolutions.Gateway.locale.zh-CN.yaml new file mode 100644 index 0000000000000..0e06791726beb --- /dev/null +++ b/manifests/d/Devolutions/Gateway/25.2.2/Devolutions.Gateway.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.10.0.schema.json + +PackageIdentifier: Devolutions.Gateway +PackageVersion: 25.2.2 +PackageLocale: zh-CN +ShortDescription: 安全远程访问管理 - 无需 VPN +Description: Devolutions Gateway 为需要安全访问远程网络段的组织提供了 Apache Guacamole 和传统 VPN 的轻量级替代方案。该独立版本专为小型部署设计,可免费安装使用(商业及个人用途均适用),并通过简洁的网页界面作为外部启动器,支持通过 RDP、SSH、Telnet、VNC 或 ARD 协议连接内部托管服务! +ReleaseNotesUrl: https://devolutions.net/gateway/release-notes/#v2025.2.2.0 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Devolutions/Gateway/25.2.2/Devolutions.Gateway.yaml b/manifests/d/Devolutions/Gateway/25.2.2/Devolutions.Gateway.yaml new file mode 100644 index 0000000000000..1fac59b3fc77b --- /dev/null +++ b/manifests/d/Devolutions/Gateway/25.2.2/Devolutions.Gateway.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Devolutions.Gateway +PackageVersion: 25.2.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.671/Discord.Discord.Canary.installer.yaml b/manifests/d/Discord/Discord/Canary/1.0.671/Discord.Discord.Canary.installer.yaml new file mode 100644 index 0000000000000..d678d5ee81509 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.671/Discord.Discord.Canary.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Discord.Discord.Canary +PackageVersion: 1.0.671 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Protocols: +- discord +ProductCode: DiscordCanary +Installers: +- Architecture: x64 + InstallerUrl: https://canary.dl2.discordapp.net/distro/app/canary/win/x64/1.0.671/DiscordCanarySetup.exe + InstallerSha256: BADBB1BAB79369A1CD9B888ED37153AA2A7D0023A265E30A934A1851543AA920 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.671/Discord.Discord.Canary.locale.en-US.yaml b/manifests/d/Discord/Discord/Canary/1.0.671/Discord.Discord.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..db99da1df5717 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.671/Discord.Discord.Canary.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Discord.Discord.Canary +PackageVersion: 1.0.671 +PackageLocale: en-US +Publisher: Discord Inc. +PublisherUrl: https://discord.com/ +PublisherSupportUrl: https://support.discord.com/ +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord Canary +PackageUrl: https://discord.com/download +License: Proprietary +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2024 Discord Inc. All rights reserved. +ShortDescription: Your Place to Talk and Hang Out +Description: |- + Discord is the easiest way to talk over voice, video, and text. + Talk, chat, hang out, and stay close with your friends and communities. +Moniker: discord-canary +Tags: +- chat +- community +- gaming +- hang-out +- talk +- video +- voice +- voice-chat +PurchaseUrl: https://discord.com/nitro +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.671/Discord.Discord.Canary.locale.zh-CN.yaml b/manifests/d/Discord/Discord/Canary/1.0.671/Discord.Discord.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6c4f87365482e --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.671/Discord.Discord.Canary.locale.zh-CN.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Discord.Discord.Canary +PackageVersion: 1.0.671 +PackageLocale: zh-CN +Publisher: Discord Inc. +PublisherUrl: https://discord.com/ +PublisherSupportUrl: https://support.discord.com/ +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord Canary +PackageUrl: https://discord.com/download +License: 专有软件 +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2024 Discord Inc. All rights reserved. +ShortDescription: 玩耍聊天的地方 +Description: |- + Discord 是最简单易用的通讯工具,兼具语音、视频以及文字信息功能。 + 您可以聊聊天,拉拉家常,一起玩耍,与好友和社区保持紧密联系。 +Tags: +- 开黑 +- 游戏 +- 聊天 +- 语音 +- 语音聊天 +PurchaseUrl: https://discord.com/nitro +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.671/Discord.Discord.Canary.yaml b/manifests/d/Discord/Discord/Canary/1.0.671/Discord.Discord.Canary.yaml new file mode 100644 index 0000000000000..665f2a3fc64b1 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.671/Discord.Discord.Canary.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Discord.Discord.Canary +PackageVersion: 1.0.671 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Development/1.0.929/Discord.Discord.Development.installer.yaml b/manifests/d/Discord/Discord/Development/1.0.929/Discord.Discord.Development.installer.yaml new file mode 100644 index 0000000000000..cef53c58fa7ed --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.929/Discord.Discord.Development.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Discord.Discord.Development +PackageVersion: 1.0.929 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Protocols: +- discord +ProductCode: DiscordDevelopment +Installers: +- Architecture: x64 + InstallerUrl: https://development.dl2.discordapp.net/distro/app/development/win/x64/1.0.929/DiscordDevelopmentSetup.exe + InstallerSha256: C3D1E33C785763DC2A6697F579CE9DDC5AA9F1D564878F09F8E642A6FC4D0FAF +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Development/1.0.929/Discord.Discord.Development.locale.en-US.yaml b/manifests/d/Discord/Discord/Development/1.0.929/Discord.Discord.Development.locale.en-US.yaml new file mode 100644 index 0000000000000..96835a93d57be --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.929/Discord.Discord.Development.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Discord.Discord.Development +PackageVersion: 1.0.929 +PackageLocale: en-US +Publisher: Discord Inc. +PublisherUrl: https://discord.com/ +PublisherSupportUrl: https://support.discord.com/ +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord Development +PackageUrl: https://discord.com/download +License: Proprietary +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2024 Discord Inc. All rights reserved. +ShortDescription: Your Place to Talk and Hang Out +Description: |- + Discord is the easiest way to talk over voice, video, and text. + Talk, chat, hang out, and stay close with your friends and communities. +Moniker: discord-development +Tags: +- chat +- community +- gaming +- hang-out +- talk +- video +- voice +- voice-chat +PurchaseUrl: https://discord.com/nitro +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Development/1.0.929/Discord.Discord.Development.locale.zh-CN.yaml b/manifests/d/Discord/Discord/Development/1.0.929/Discord.Discord.Development.locale.zh-CN.yaml new file mode 100644 index 0000000000000..cabed55ca624f --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.929/Discord.Discord.Development.locale.zh-CN.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Discord.Discord.Development +PackageVersion: 1.0.929 +PackageLocale: zh-CN +Publisher: Discord Inc. +PublisherUrl: https://discord.com/ +PublisherSupportUrl: https://support.discord.com/ +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord Development +PackageUrl: https://discord.com/download +License: 专有软件 +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2024 Discord Inc. All rights reserved. +ShortDescription: 玩耍聊天的地方 +Description: |- + Discord 是最简单易用的通讯工具,兼具语音、视频以及文字信息功能。 + 您可以聊聊天,拉拉家常,一起玩耍,与好友和社区保持紧密联系。 +Tags: +- 开黑 +- 游戏 +- 聊天 +- 语音 +- 语音聊天 +PurchaseUrl: https://discord.com/nitro +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Development/1.0.929/Discord.Discord.Development.yaml b/manifests/d/Discord/Discord/Development/1.0.929/Discord.Discord.Development.yaml new file mode 100644 index 0000000000000..f81d46cf0fdd7 --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.929/Discord.Discord.Development.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Discord.Discord.Development +PackageVersion: 1.0.929 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Docker/DockerCompose/2.38.2/Docker.DockerCompose.installer.yaml b/manifests/d/Docker/DockerCompose/2.38.2/Docker.DockerCompose.installer.yaml new file mode 100644 index 0000000000000..a089c65c4dbfc --- /dev/null +++ b/manifests/d/Docker/DockerCompose/2.38.2/Docker.DockerCompose.installer.yaml @@ -0,0 +1,18 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Docker.DockerCompose +PackageVersion: 2.38.2 +InstallerType: portable +Commands: +- docker-compose +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/docker/compose/releases/download/v2.38.2/docker-compose-windows-x86_64.exe + InstallerSha256: BA8F09D3873F7A9755B863ED2013A1276B96FCBBC074C69FF3D3CFBCE3E0186F +- Architecture: arm64 + InstallerUrl: https://github.com/docker/compose/releases/download/v2.38.2/docker-compose-windows-aarch64.exe + InstallerSha256: 3517FA88873214CE21BD23E8B250028AF434BF9A9A64AF8048DB88924314399B +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Docker/DockerCompose/2.38.2/Docker.DockerCompose.locale.en-US.yaml b/manifests/d/Docker/DockerCompose/2.38.2/Docker.DockerCompose.locale.en-US.yaml new file mode 100644 index 0000000000000..7579be7ef7500 --- /dev/null +++ b/manifests/d/Docker/DockerCompose/2.38.2/Docker.DockerCompose.locale.en-US.yaml @@ -0,0 +1,51 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Docker.DockerCompose +PackageVersion: 2.38.2 +PackageLocale: en-US +Publisher: Docker Inc. +PublisherUrl: https://github.com/docker +PublisherSupportUrl: https://github.com/docker/compose/issues +PackageName: Docker Compose +PackageUrl: https://github.com/docker/compose +License: Apache-2.0 +LicenseUrl: https://github.com/docker/compose/blob/HEAD/LICENSE +ShortDescription: docker-compose plugin for docker cli +Description: |- + Define and run multi-container applications with Docker + with simple configuration files and command: docker-compose up +Tags: +- cli +- compose +- containers +- developer-tools +- docker +- docker-compose +ReleaseNotes: |- + What's Changed + ✨ Improvements + - Add --networks flag to config command by @jarqvi in #13021 + 🐛 Fixes + - Add a Done event to model progress display by @glours in #13008 + - Fix the way we're checking if the provider metadata are empty or not by @glours in #13017 + - Build: fix service with profile missing secrets by @ndeloof in #13023 + - Fix select dockerignore based on Dockerfile name set from symlink by @ndeloof in #13024 + 🔧 Internal + - pkg/compose: remove redundant uses of strslice.StrSlice by @thaJeztah in #13002 + - (reactoring) avoid a global variable by introducing logConsumer decorator by @ndeloof in #12945 + - Chore: fix some minor issues in the comments by @mountdisk in #12991 + - A single place for shell-out command setup by @ndeloof in #13007 + - Add USER_AGENT variable to cmd when shellouting by @glours in #13025 + ⚙️ Dependencies + - Bump golang to v1.23.10 by @glours in #13004 + - Bump go-viper/mapstructure to version v2.3.0 by @glours in #13005 + - Build(deps): bump github.com/moby/buildkit from 0.23.1 to 0.23.2 by @dependabot in #13009 + - Build(deps): bump github.com/docker/cli from 28.3.0+incompatible to 28.3.1+incompatible by @dependabot in #13012 + - Build(deps): bump github.com/docker/docker from 28.3.0+incompatible to 28.3.1+incompatible by @dependabot in #13011 + New Contributors + - @mountdisk made their first contribution in #12991 + Full Changelog: v2.38.1...v2.38.2 +ReleaseNotesUrl: https://github.com/docker/compose/releases/tag/v2.38.2 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Docker/DockerCompose/2.38.2/Docker.DockerCompose.yaml b/manifests/d/Docker/DockerCompose/2.38.2/Docker.DockerCompose.yaml new file mode 100644 index 0000000000000..221ef0d491dde --- /dev/null +++ b/manifests/d/Docker/DockerCompose/2.38.2/Docker.DockerCompose.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Docker.DockerCompose +PackageVersion: 2.38.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dropbox/Dropbox/228.4.5567/Dropbox.Dropbox.installer.yaml b/manifests/d/Dropbox/Dropbox/228.4.5567/Dropbox.Dropbox.installer.yaml new file mode 100644 index 0000000000000..17599a509fe57 --- /dev/null +++ b/manifests/d/Dropbox/Dropbox/228.4.5567/Dropbox.Dropbox.installer.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Dropbox.Dropbox +PackageVersion: 228.4.5567 +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20228.4.5567%20Offline%20Installer.x86.exe + InstallerSha256: A4D63CCE16AFF36CB3B356C050EF95044A35D54EB623CE8FE5CA742B14B74185 +- Architecture: x64 + InstallerUrl: https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20228.4.5567%20Offline%20Installer.x64.exe + InstallerSha256: 76F2BA7FF5626696EF2621A8815E169A5CCB6F2713F749B106F46501D1AB5F83 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/d/Dropbox/Dropbox/228.4.5567/Dropbox.Dropbox.locale.en-US.yaml b/manifests/d/Dropbox/Dropbox/228.4.5567/Dropbox.Dropbox.locale.en-US.yaml new file mode 100644 index 0000000000000..06f268f3c795b --- /dev/null +++ b/manifests/d/Dropbox/Dropbox/228.4.5567/Dropbox.Dropbox.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Dropbox.Dropbox +PackageVersion: 228.4.5567 +PackageLocale: en-US +Publisher: Dropbox, Inc. +PublisherUrl: https://www.dropbox.com +PublisherSupportUrl: https://help.dropbox.com +PrivacyUrl: https://www.dropbox.com/privacy +Author: Dropbox, Inc. +PackageName: Dropbox +PackageUrl: https://www.dropbox.com +License: Combined GPLv2 and proprietary software +LicenseUrl: https://www.dropbox.com/terms +Copyright: Copyright (c) Dropbox, Inc. +CopyrightUrl: https://www.dropbox.com/terms +ShortDescription: Organize all your team's content, tune out distractions, and get everyone coordinated with the world's first smart workspace. +Moniker: dropbox +Tags: +- cloud +- dropbox +- files +- online +- pictures +- storage +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/e/e2eSoft/iVCam/7.3.4/e2eSoft.iVCam.yaml b/manifests/d/Dropbox/Dropbox/228.4.5567/Dropbox.Dropbox.yaml similarity index 54% rename from manifests/e/e2eSoft/iVCam/7.3.4/e2eSoft.iVCam.yaml rename to manifests/d/Dropbox/Dropbox/228.4.5567/Dropbox.Dropbox.yaml index 24450177b659a..34a7785de1f6a 100644 --- a/manifests/e/e2eSoft/iVCam/7.3.4/e2eSoft.iVCam.yaml +++ b/manifests/d/Dropbox/Dropbox/228.4.5567/Dropbox.Dropbox.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.4.3 $debug=AUSU.CRLF.7-4-6.Win32NT +# Created using wingetcreate 1.9.14.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json -PackageIdentifier: e2eSoft.iVCam -PackageVersion: 7.3.4 +PackageIdentifier: Dropbox.Dropbox +PackageVersion: 228.4.5567 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.9.0 diff --git a/manifests/d/divVerent/AAAAXY/1.6.257/divVerent.AAAAXY.installer.yaml b/manifests/d/divVerent/AAAAXY/1.6.257/divVerent.AAAAXY.installer.yaml new file mode 100644 index 0000000000000..08e4a4d2eec0b --- /dev/null +++ b/manifests/d/divVerent/AAAAXY/1.6.257/divVerent.AAAAXY.installer.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: divVerent.AAAAXY +PackageVersion: 1.6.257 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: aaaaxy-windows-amd64.exe +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/divVerent/aaaaxy/releases/download/v1.6.257/aaaaxy-windows-amd64-v1.6.257.zip + InstallerSha256: 40236A7D715B7A8F37039CD0F5A21B605D297A6CEAC5B1F35FDB46E8A7AC2571 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/divVerent/AAAAXY/1.6.257/divVerent.AAAAXY.locale.en-US.yaml b/manifests/d/divVerent/AAAAXY/1.6.257/divVerent.AAAAXY.locale.en-US.yaml new file mode 100644 index 0000000000000..dfad4c2a6ad8b --- /dev/null +++ b/manifests/d/divVerent/AAAAXY/1.6.257/divVerent.AAAAXY.locale.en-US.yaml @@ -0,0 +1,51 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: divVerent.AAAAXY +PackageVersion: 1.6.257 +PackageLocale: en-US +Publisher: divVerent +PublisherUrl: https://divverent.github.io/ +PublisherSupportUrl: https://github.com/divVerent/aaaaxy/issues +Author: divVerent +PackageName: AAAAXY +PackageUrl: https://divverent.github.io/aaaaxy +License: Apache-2.0 +LicenseUrl: https://github.com/divVerent/aaaaxy/blob/HEAD/LICENSE +ShortDescription: A nonlinear 2D puzzle platformer taking place in impossible spaces. +Description: |- + AAAAXY is a nonlinear 2D puzzle platformer taking place in impossible spaces. + + Although your general goal is reaching the surprising end of the game, + you are encouraged to set your own goals while playing. + Exploration will be rewarded, and secrets await you! + + So jump and run around, and enjoy losing your sense of orientation in this World of Wicked Weirdness. + Find out what Van Vlijmen will make you do. + Pick a path, get inside a Klein Bottle, + recognize some memes, and by all means: don't look up. + + And beware of a minor amount of trolling. + + To reach the end, a new player will take about 4 to 6 hours, + a full playthrough can be finished in about 1 hour and the end can be reached in about 15 minutes. +Moniker: aaaaxy +Tags: +- 2d +- game +- game-development +- impossible-spaces +- jumpnrun +- non-euclidean +- puzzle +- puzzle-game +ReleaseNotes: |- + Changes since v1.6.252: + - Menu: when language switching, do not switch to game. + - Mobile: also provide per-arch APKs. +ReleaseNotesUrl: https://github.com/divVerent/aaaaxy/releases/tag/v1.6.257 +Documentations: +- DocumentLabel: User Guide + DocumentUrl: https://divverent.github.io/aaaaxy/userguide.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/divVerent/AAAAXY/1.6.257/divVerent.AAAAXY.yaml b/manifests/d/divVerent/AAAAXY/1.6.257/divVerent.AAAAXY.yaml new file mode 100644 index 0000000000000..b019eac0089b4 --- /dev/null +++ b/manifests/d/divVerent/AAAAXY/1.6.257/divVerent.AAAAXY.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: divVerent.AAAAXY +PackageVersion: 1.6.257 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/dotenvx/dotenvx/1.46.0/dotenvx.dotenvx.installer.yaml b/manifests/d/dotenvx/dotenvx/1.46.0/dotenvx.dotenvx.installer.yaml new file mode 100644 index 0000000000000..860ea3b96a947 --- /dev/null +++ b/manifests/d/dotenvx/dotenvx/1.46.0/dotenvx.dotenvx.installer.yaml @@ -0,0 +1,19 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: dotenvx.dotenvx +PackageVersion: 1.46.0 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: dotenvx.exe + PortableCommandAlias: dotenvx +UpgradeBehavior: uninstallPrevious +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/dotenvx/dotenvx/releases/download/v1.46.0/dotenvx-1.46.0-windows-x86_64.zip + InstallerSha256: CA7BC8DB67AD8157DC847693FAF721486CE865B8E43FD7CF82DA5E92B278011B +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-07-07 diff --git a/manifests/d/dotenvx/dotenvx/1.46.0/dotenvx.dotenvx.locale.en-US.yaml b/manifests/d/dotenvx/dotenvx/1.46.0/dotenvx.dotenvx.locale.en-US.yaml new file mode 100644 index 0000000000000..5a263e553ee2a --- /dev/null +++ b/manifests/d/dotenvx/dotenvx/1.46.0/dotenvx.dotenvx.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: dotenvx.dotenvx +PackageVersion: 1.46.0 +PackageLocale: en-US +Publisher: dotenvx +PublisherUrl: https://dotenvx.com +PublisherSupportUrl: https://github.com/dotenvx/dotenvx/issues +Author: motdotla +PackageName: dotenvx +PackageUrl: https://github.com/dotenvx/dotenvx +License: BSD-3-Clause +ShortDescription: a better dotenv–from the creator of dotenv +Description: a better dotenv–from the creator of dotenv +Moniker: dotenvx +Tags: +- env +- dotenv +- environment +- variables +- dotenvx +- cli +- encryption +ReleaseNotesUrl: https://github.com/dotenvx/dotenvx/releases/tag/v1.46.0 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/d/dotenvx/dotenvx/1.46.0/dotenvx.dotenvx.yaml b/manifests/d/dotenvx/dotenvx/1.46.0/dotenvx.dotenvx.yaml new file mode 100644 index 0000000000000..95ecd6ff2d3a9 --- /dev/null +++ b/manifests/d/dotenvx/dotenvx/1.46.0/dotenvx.dotenvx.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: dotenvx.dotenvx +PackageVersion: 1.46.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/e/Easeware/DriverEasy/6.1.2.29728/Easeware.DriverEasy.installer.yaml b/manifests/e/Easeware/DriverEasy/6.1.2.29728/Easeware.DriverEasy.installer.yaml deleted file mode 100644 index 47363fc477006..0000000000000 --- a/manifests/e/Easeware/DriverEasy/6.1.2.29728/Easeware.DriverEasy.installer.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jan/16 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json - -PackageIdentifier: Easeware.DriverEasy -PackageVersion: 6.1.2.29728 -InstallerLocale: en-US -MinimumOSVersion: 10.0.0.0 -InstallerType: inno -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: install -AppsAndFeaturesEntries: -- DisplayVersion: 6.1.2 -Installers: -- Architecture: neutral - InstallerUrl: https://download.drivereasy.com/DriverEasy_Setup.exe - InstallerSha256: FAE2CDCB8B566128CA110CF9BAD3EB604542603ADD5DE1A3676D6F75078D3F67 -ManifestType: installer -ManifestVersion: 1.6.0 diff --git a/manifests/e/Easeware/DriverEasy/6.1.2.29728/Easeware.DriverEasy.locale.de-DE.yaml b/manifests/e/Easeware/DriverEasy/6.1.2.29728/Easeware.DriverEasy.locale.de-DE.yaml deleted file mode 100644 index 38d77e931578b..0000000000000 --- a/manifests/e/Easeware/DriverEasy/6.1.2.29728/Easeware.DriverEasy.locale.de-DE.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jan/16 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.6.0.schema.json - -PackageIdentifier: Easeware.DriverEasy -PackageVersion: 6.1.2.29728 -PackageLocale: de-DE -Publisher: Easeware -PublisherSupportUrl: https://de.drivereasy.com/tech-support/ -PrivacyUrl: https://de.drivereasy.com/privacy-policy/ -Author: Easeware -PackageName: Driver Easy -PackageUrl: https://de.drivereasy.com/ -License: Proprietär -LicenseUrl: https://de.drivereasy.com/eula/ -Copyright: Copyright (c) 2021 Easeware. -ShortDescription: Laden Sie einfach die neuesten oder fehlende Treiber für Ihren Computer herunter. -Tags: -- geräte-treiber -- treiber -- treiber-updater -ManifestType: locale -ManifestVersion: 1.6.0 diff --git a/manifests/e/Easeware/DriverEasy/6.1.2.29728/Easeware.DriverEasy.locale.en-US.yaml b/manifests/e/Easeware/DriverEasy/6.1.2.29728/Easeware.DriverEasy.locale.en-US.yaml deleted file mode 100644 index 7e728feaccadf..0000000000000 --- a/manifests/e/Easeware/DriverEasy/6.1.2.29728/Easeware.DriverEasy.locale.en-US.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jan/16 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json - -PackageIdentifier: Easeware.DriverEasy -PackageVersion: 6.1.2.29728 -PackageLocale: en-US -Publisher: Easeware -PublisherSupportUrl: https://www.drivereasy.com/tech-support/ -PrivacyUrl: https://www.drivereasy.com/privacy-policy/ -Author: Easeware -PackageName: Driver Easy -PackageUrl: https://www.drivereasy.com/ -License: Proprietary -LicenseUrl: https://www.drivereasy.com/eula/ -Copyright: Copyright (c) 2021 Easeware. -ShortDescription: Easy download newest/missing drivers for your computer! -Moniker: drivereasy -Tags: -- device-drivers -- driver -- drivers -- driver-updater -- updater -ManifestType: defaultLocale -ManifestVersion: 1.6.0 diff --git a/manifests/e/Egnyte/EgnyteDesktopApp/3.26.2.164/Egnyte.EgnyteDesktopApp.installer.yaml b/manifests/e/Egnyte/EgnyteDesktopApp/3.26.2.164/Egnyte.EgnyteDesktopApp.installer.yaml new file mode 100644 index 0000000000000..10dbe9733810d --- /dev/null +++ b/manifests/e/Egnyte/EgnyteDesktopApp/3.26.2.164/Egnyte.EgnyteDesktopApp.installer.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Egnyte.EgnyteDesktopApp +PackageVersion: 3.26.2.164 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLDIR="" +UpgradeBehavior: install +Protocols: +- egnyte +- egnyte-credentials +FileExtensions: +- egnyte_d +- egnyte_f +- gdoc +- gsheet +- gslides +ProductCode: '{B120C0AB-4FD7-4761-BEE4-E811F3B7BBDE}' +AppsAndFeaturesEntries: +- ProductCode: '{B120C0AB-4FD7-4761-BEE4-E811F3B7BBDE}' + UpgradeCode: '{03909D9B-F5F2-41F3-ABF9-4FCE077F028D}' +Installers: +- Architecture: x64 + InstallerUrl: https://egnyte-cdn.egnyte.com/egnytedrive/win/en-us/3.26.2/EgnyteDesktopApp_3.26.2_164.msi + InstallerSha256: 7F27E32FF4A677906ED8D0ADD8A64E091D1EED45B81F1B9BCC807F5D28CC7BFC +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/Egnyte/EgnyteDesktopApp/3.26.2.164/Egnyte.EgnyteDesktopApp.locale.en-US.yaml b/manifests/e/Egnyte/EgnyteDesktopApp/3.26.2.164/Egnyte.EgnyteDesktopApp.locale.en-US.yaml new file mode 100644 index 0000000000000..b60353161dcf3 --- /dev/null +++ b/manifests/e/Egnyte/EgnyteDesktopApp/3.26.2.164/Egnyte.EgnyteDesktopApp.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.10.0.schema.json + +PackageIdentifier: Egnyte.EgnyteDesktopApp +PackageVersion: 3.26.2.164 +PackageLocale: en-US +Publisher: Egnyte, Inc. +PublisherUrl: https://www.egnyte.com/ +PrivacyUrl: https://www.egnyte.com/privacy-policy +Author: Egnyte, Inc. +PackageName: Egnyte Desktop App +PackageUrl: https://www.egnyte.com/file-access/desktop-access +License: Proprietary +LicenseUrl: https://www.egnyte.com/terms-and-conditions/10-2022 +Copyright: Copyright © 2008-2024 Egnyte, Inc. All rights reserved. +ShortDescription: The Desktop App provides access to content on Egnyte from your file explorer, allowing you to work with content on the cloud the same way you work with content stored locally. +Moniker: egnyte +Tags: +- backup +- cloud +- cloud-drive +- download +- drive +- file +- netdisk +- share +- sync +- upload +ReleaseNotes: |- + Changes in this version + - Fix for a rare issue when the user was not able to list directories in case of an unstable network connection. + - Support for keeping the historical version of files edited via Bluebeam's Revu.exe +PurchaseUrl: https://www.egnyte.com/pricing +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Egnyte/EgnyteDesktopApp/3.26.2.164/Egnyte.EgnyteDesktopApp.locale.zh-CN.yaml b/manifests/e/Egnyte/EgnyteDesktopApp/3.26.2.164/Egnyte.EgnyteDesktopApp.locale.zh-CN.yaml new file mode 100644 index 0000000000000..92229851b2deb --- /dev/null +++ b/manifests/e/Egnyte/EgnyteDesktopApp/3.26.2.164/Egnyte.EgnyteDesktopApp.locale.zh-CN.yaml @@ -0,0 +1,30 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Egnyte.EgnyteDesktopApp +PackageVersion: 3.26.2.164 +PackageLocale: zh-CN +Publisher: Egnyte, Inc. +PublisherUrl: https://www.egnyte.com/ +PrivacyUrl: https://www.egnyte.com/privacy-policy +Author: Egnyte, Inc. +PackageName: Egnyte Desktop App +PackageUrl: https://www.egnyte.com/file-access/desktop-access +License: 专有软件 +LicenseUrl: https://www.egnyte.com/terms-and-conditions/10-2022 +Copyright: Copyright © 2008-2024 Egnyte, Inc. All rights reserved. +ShortDescription: Egnyte 桌面应用可让您从文件资源管理器访问 Egnyte 上的内容,让您可以像处理本地存储的内容一样处理云上的内容。 +Tags: +- 上传 +- 下载 +- 云 +- 云盘 +- 共享 +- 分享 +- 同步 +- 备份 +- 文件 +- 网盘 +PurchaseUrl: https://www.egnyte.com/pricing +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Egnyte/EgnyteDesktopApp/3.26.2.164/Egnyte.EgnyteDesktopApp.yaml b/manifests/e/Egnyte/EgnyteDesktopApp/3.26.2.164/Egnyte.EgnyteDesktopApp.yaml new file mode 100644 index 0000000000000..0d8bbf3050df7 --- /dev/null +++ b/manifests/e/Egnyte/EgnyteDesktopApp/3.26.2.164/Egnyte.EgnyteDesktopApp.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Egnyte.EgnyteDesktopApp +PackageVersion: 3.26.2.164 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/Epilogue/EpilogueOperator/1.8.0/Epilogue.EpilogueOperator.installer.yaml b/manifests/e/Epilogue/EpilogueOperator/1.8.0/Epilogue.EpilogueOperator.installer.yaml new file mode 100644 index 0000000000000..5b96f23dadce1 --- /dev/null +++ b/manifests/e/Epilogue/EpilogueOperator/1.8.0/Epilogue.EpilogueOperator.installer.yaml @@ -0,0 +1,21 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Epilogue.EpilogueOperator +PackageVersion: 1.8.0 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +ProductCode: '{EFE1351A-F14B-4540-B12D-3D3FA559CFB5}_is1' +ReleaseDate: 2025-07-08 +AppsAndFeaturesEntries: +- ProductCode: '{EFE1351A-F14B-4540-B12D-3D3FA559CFB5}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Epilogue Playback' +Installers: +- Architecture: x64 + InstallerUrl: https://epilogue.nyc3.cdn.digitaloceanspaces.com/releases/software/Playback/version/1.8.0/release/windows/playback-setup.exe + InstallerSha256: D97582F2042C581092E3396BF14B8F6CDAB13B3EFF6EBDEA8C3E54CD6B9FBBD1 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/Epilogue/EpilogueOperator/1.8.0/Epilogue.EpilogueOperator.locale.en-US.yaml b/manifests/e/Epilogue/EpilogueOperator/1.8.0/Epilogue.EpilogueOperator.locale.en-US.yaml new file mode 100644 index 0000000000000..e811c6515e350 --- /dev/null +++ b/manifests/e/Epilogue/EpilogueOperator/1.8.0/Epilogue.EpilogueOperator.locale.en-US.yaml @@ -0,0 +1,14 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Epilogue.EpilogueOperator +PackageVersion: 1.8.0 +PackageLocale: en-US +Publisher: Epilogue +PackageName: Epilogue Operator +PackageUrl: https://www.epilogue.co/ +License: MIT +Copyright: Copyright © 2020-2022 Epilogue. +ShortDescription: Play and manage Game Boy cartridges on your computer. Device driver and operator for the GB Operator. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Epilogue/EpilogueOperator/1.8.0/Epilogue.EpilogueOperator.yaml b/manifests/e/Epilogue/EpilogueOperator/1.8.0/Epilogue.EpilogueOperator.yaml new file mode 100644 index 0000000000000..6141ff15d4759 --- /dev/null +++ b/manifests/e/Epilogue/EpilogueOperator/1.8.0/Epilogue.EpilogueOperator.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Epilogue.EpilogueOperator +PackageVersion: 1.8.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/EricRaijmakers/Vidiot/1.1.0/EricRaijmakers.Vidiot.installer.yaml b/manifests/e/EricRaijmakers/Vidiot/1.1.0/EricRaijmakers.Vidiot.installer.yaml new file mode 100644 index 0000000000000..96732286e3656 --- /dev/null +++ b/manifests/e/EricRaijmakers/Vidiot/1.1.0/EricRaijmakers.Vidiot.installer.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: EricRaijmakers.Vidiot +PackageVersion: 1.1.0 +InstallerType: nullsoft +Scope: machine +FileExtensions: +- vid +ProductCode: Vidiot +ReleaseDate: 2025-04-16 +Installers: +- Architecture: x64 + InstallerUrl: https://sourceforge.net/projects/vidiot/files/Vidiot-1.1.0-win64.exe/download + InstallerSha256: 24FEDE95C8DC61D8A9EAF64EAD809C1A2DFED7B100A19DAE7143CF1A5279A36A +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/EricRaijmakers/Vidiot/1.1.0/EricRaijmakers.Vidiot.locale.en-US.yaml b/manifests/e/EricRaijmakers/Vidiot/1.1.0/EricRaijmakers.Vidiot.locale.en-US.yaml new file mode 100644 index 0000000000000..94cd308d0c65e --- /dev/null +++ b/manifests/e/EricRaijmakers/Vidiot/1.1.0/EricRaijmakers.Vidiot.locale.en-US.yaml @@ -0,0 +1,54 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: EricRaijmakers.Vidiot +PackageVersion: 1.1.0 +PackageLocale: en-US +Publisher: Eric Raijmakers +PublisherUrl: https://sourceforge.net/u/epra/profile/ +PublisherSupportUrl: https://sourceforge.net/projects/vidiot/support +# PrivacyUrl: +Author: Eric Raijmakers +PackageName: Vidiot +PackageUrl: https://sourceforge.net/projects/vidiot/ +License: GPL-3.0-or-later +LicenseUrl: https://sourceforge.net/p/vidiot/code/HEAD/tree/trunk/License.txt +Copyright: © 2013-2025 Eric Raijmakers +# CopyrightUrl: +ShortDescription: Vidiot is a non-linear video editor targeted for home video editing. It supports operations like compositing, scaling/rotating, adding transitions and titles, trimming, etc. +# Description: +# Moniker: +Tags: +- clip +- creative +- creativity +- edit +- editor +- film +- movie +- video +- video-editing +- video-editor +ReleaseNotes: |- + - Added [#381]: Add dates to Changelog. (r3076) + - Fixed: After splitting at end of video clip, which has larger audio, video clip is not selected. (r3073) + - Fixed: After pasting files/clips, the pasted clips were not selected. (r3021) + - Added Workspace menu options to automatically select preview/timeline sizes. (r3020) + - Added option to hide menu bar in full screen mode. (r3020) + - Fixed: Option to hide pane titles is saved. (r3020) + - Added option (CTRL-SPACE, CTRL-PLAY) to buffer video before preview starts. (r3007) + - Improved initial thumbnail generation speed. (r3007) + - Improved previewing performance. (r3007) + - Added support for hardware decoding. (r2986) + - Fixed crash when creating transitions in combination with changing audio volume. (r2981) + - Fixed crash when playing slowing down audio to half speed. (r2980) + - Fixed: Cleanup folder used to delete images used for transitions. (r2979) + - Fixed saving of projects containing files with special characters in the filenames. (r2978) +ReleaseNotesUrl: https://sourceforge.net/projects/vidiot/files/ +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://sourceforge.net/p/vidiot/wiki/Home/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EricRaijmakers/Vidiot/1.1.0/EricRaijmakers.Vidiot.locale.zh-CN.yaml b/manifests/e/EricRaijmakers/Vidiot/1.1.0/EricRaijmakers.Vidiot.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6f5f7a41e299c --- /dev/null +++ b/manifests/e/EricRaijmakers/Vidiot/1.1.0/EricRaijmakers.Vidiot.locale.zh-CN.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: EricRaijmakers.Vidiot +PackageVersion: 1.1.0 +PackageLocale: zh-CN +# Publisher: +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +# PackageName: +# PackageUrl: +# License: +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: Vidiot 是一款面向家庭视频编辑的非线性视频编辑器。它支持合成、缩放/旋转、添加转场和字幕、剪辑等操作。 +# Description: +# Moniker: +Tags: +- 创意 +- 剪辑 +- 影片 +- 电影 +- 视频 +- 视频编辑 +- 视频编辑器 +- 编辑 +- 编辑器 +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EricRaijmakers/Vidiot/1.1.0/EricRaijmakers.Vidiot.yaml b/manifests/e/EricRaijmakers/Vidiot/1.1.0/EricRaijmakers.Vidiot.yaml new file mode 100644 index 0000000000000..4691c4a14fe15 --- /dev/null +++ b/manifests/e/EricRaijmakers/Vidiot/1.1.0/EricRaijmakers.Vidiot.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: EricRaijmakers.Vidiot +PackageVersion: 1.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/Evope/Evope/1.1.6.79/Evope.Evope.installer.yaml b/manifests/e/Evope/Evope/1.1.6.79/Evope.Evope.installer.yaml new file mode 100644 index 0000000000000..37722faebf72e --- /dev/null +++ b/manifests/e/Evope/Evope/1.1.6.79/Evope.Evope.installer.yaml @@ -0,0 +1,12 @@ +# Automatically updated by the winget bot at 2025/Jul/08 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Evope.Evope +PackageVersion: 1.1.6.79 +InstallerType: inno +Installers: +- Architecture: x64 + InstallerUrl: https://app.evope.com.br/evopesetup.exe + InstallerSha256: C8626DE929CE9406DE8599EF65DF1F9C7A0863A8393BE969FAA8C260FBD5F21A +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/Evope/Evope/1.1.6.79/Evope.Evope.locale.pt-BR.yaml b/manifests/e/Evope/Evope/1.1.6.79/Evope.Evope.locale.pt-BR.yaml new file mode 100644 index 0000000000000..c968dfc7db946 --- /dev/null +++ b/manifests/e/Evope/Evope/1.1.6.79/Evope.Evope.locale.pt-BR.yaml @@ -0,0 +1,13 @@ +# Automatically updated by the winget bot at 2025/Jul/08 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Evope.Evope +PackageVersion: 1.1.6.79 +PackageLocale: pt-BR +Publisher: Evope, Co. +PackageName: Evope +PackageUrl: https://app.evope.com.br/ +License: Licença do MIT +ShortDescription: Evope Setup +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Evope/Evope/1.1.6.79/Evope.Evope.yaml b/manifests/e/Evope/Evope/1.1.6.79/Evope.Evope.yaml new file mode 100644 index 0000000000000..7a4af3cc74d25 --- /dev/null +++ b/manifests/e/Evope/Evope/1.1.6.79/Evope.Evope.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jul/08 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Evope.Evope +PackageVersion: 1.1.6.79 +DefaultLocale: pt-BR +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/e2eSoft/iVCam/7.3.4/e2eSoft.iVCam.installer.yaml b/manifests/e/e2eSoft/iVCam/7.3.4/e2eSoft.iVCam.installer.yaml deleted file mode 100644 index 9a1d101b1f366..0000000000000 --- a/manifests/e/e2eSoft/iVCam/7.3.4/e2eSoft.iVCam.installer.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# Created with YamlCreate.ps1 v2.4.3 $debug=AUSU.CRLF.7-4-6.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json - -PackageIdentifier: e2eSoft.iVCam -PackageVersion: 7.3.4 -InstallerLocale: en-US -InstallerType: inno -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: install -ReleaseDate: 2024-11-08 -AppsAndFeaturesEntries: -- Publisher: e2eSoft - ProductCode: iVCam_is1 -ElevationRequirement: elevatesSelf -Installers: -- Architecture: x86 - InstallerUrl: https://github.com/e2eSoft/products/releases/download/v7.3/iVCam_x86_v7.3.4.exe - InstallerSha256: 0FE389FA88271FBCB35D2AA622B9712BD10D6A1CFC443A52BF1EEE884C0D2E32 - ProductCode: iVCam_is1 -- Architecture: x64 - InstallerUrl: https://github.com/e2eSoft/products/releases/download/v7.3/iVCam_x86_v7.3.4.exe - InstallerSha256: 0FE389FA88271FBCB35D2AA622B9712BD10D6A1CFC443A52BF1EEE884C0D2E32 - ProductCode: iVCam_is1 -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/e/e2eSoft/iVCam/7.3.7/e2eSoft.iVCam.installer.yaml b/manifests/e/e2eSoft/iVCam/7.3.7/e2eSoft.iVCam.installer.yaml new file mode 100644 index 0000000000000..57cc5c722d802 --- /dev/null +++ b/manifests/e/e2eSoft/iVCam/7.3.7/e2eSoft.iVCam.installer.yaml @@ -0,0 +1,29 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: e2eSoft.iVCam +PackageVersion: 7.3.7 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: iVCam_is1 +ReleaseDate: 2025-06-27 +AppsAndFeaturesEntries: +- ProductCode: iVCam_is1 +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\e2eSoft\iVCam' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/e2eSoft/products/releases/download/v7.3/iVCam_x86_v7.3.7.exe + InstallerSha256: 9A66F71868D4D9FB765ABCB744F91FC1315769C10A027A1E9E56940C832B9951 +- Architecture: x64 + InstallerUrl: https://github.com/e2eSoft/products/releases/download/v7.3/iVCam_x64_v7.3.7.exe + InstallerSha256: 7E563057E041931102CCBA4A40E7DA862B0A8A2FD9FA75EE7C12BEBCA002B911 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/e2eSoft/iVCam/7.3.4/e2eSoft.iVCam.locale.en-US.yaml b/manifests/e/e2eSoft/iVCam/7.3.7/e2eSoft.iVCam.locale.en-US.yaml similarity index 68% rename from manifests/e/e2eSoft/iVCam/7.3.4/e2eSoft.iVCam.locale.en-US.yaml rename to manifests/e/e2eSoft/iVCam/7.3.7/e2eSoft.iVCam.locale.en-US.yaml index 1e94d14c7a71f..7f7e2e00c652f 100644 --- a/manifests/e/e2eSoft/iVCam/7.3.4/e2eSoft.iVCam.locale.en-US.yaml +++ b/manifests/e/e2eSoft/iVCam/7.3.7/e2eSoft.iVCam.locale.en-US.yaml @@ -1,31 +1,25 @@ -# Created with YamlCreate.ps1 v2.4.3 $debug=AUSU.CRLF.7-4-6.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json - -PackageIdentifier: e2eSoft.iVCam -PackageVersion: 7.3.4 -PackageLocale: en-US -Publisher: e2eSoft -PublisherUrl: https://www.e2esoft.com/ -PublisherSupportUrl: https://www.e2esoft.com/vcam/faqs/ -PrivacyUrl: https://www.e2esoft.com/privacy-policy/ -Author: e2eSoft -PackageName: iVCam -PackageUrl: https://www.e2esoft.com/ivcam/ -License: Proprietary -# LicenseUrl: -Copyright: Copyright © 2021 e2eSoft. All rights reserved. -# CopyrightUrl: -ShortDescription: iVCam turns your Phone/Pad into an HD webcam for Windows PC. -# Description: -Moniker: ivcam -Tags: -- cam -- phone -- webcam -ReleaseNotes: Release v7.3.4 -ReleaseNotesUrl: https://github.com/e2eSoft/products/releases/tag/v7.3 -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.9.0 +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: e2eSoft.iVCam +PackageVersion: 7.3.7 +PackageLocale: en-US +Publisher: e2eSoft +PublisherUrl: https://www.e2esoft.com/ +PublisherSupportUrl: https://www.e2esoft.com/vcam/faqs/ +PrivacyUrl: https://www.e2esoft.com/privacy-policy/ +Author: e2eSoft +PackageName: iVCam +PackageUrl: https://www.e2esoft.com/ivcam/ +License: Proprietary +Copyright: Copyright © 2021 e2eSoft. All rights reserved. +ShortDescription: iVCam turns your Phone/Pad into an HD webcam for Windows PC. +Moniker: ivcam +Tags: +- cam +- phone +- webcam +ReleaseNotes: Release v7.3.7 +ReleaseNotesUrl: https://github.com/e2eSoft/products/releases/tag/v7.3 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/e2eSoft/iVCam/7.3.7/e2eSoft.iVCam.yaml b/manifests/e/e2eSoft/iVCam/7.3.7/e2eSoft.iVCam.yaml new file mode 100644 index 0000000000000..aefd1d18b575c --- /dev/null +++ b/manifests/e/e2eSoft/iVCam/7.3.7/e2eSoft.iVCam.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: e2eSoft.iVCam +PackageVersion: 7.3.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/everauto/zTasker/2.2.5/everauto.zTasker.installer.yaml b/manifests/e/everauto/zTasker/2.2.5/everauto.zTasker.installer.yaml new file mode 100644 index 0000000000000..792e45fb8b2f2 --- /dev/null +++ b/manifests/e/everauto/zTasker/2.2.5/everauto.zTasker.installer.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: everauto.zTasker +PackageVersion: 2.2.5 +InstallerType: inno +Scope: user +UpgradeBehavior: install +ProductCode: '{442746B5-64EF-4EE7-9B23-F52EB95E1CF0}_is1' +ReleaseDate: 2025-07-09 +Installers: +- Architecture: x86 + InstallerUrl: https://www.everauto.net/down/zTasker_2.2.5_Setup.exe + InstallerSha256: 183186DEB9DB3CAC7C27CC02E72DC6C6C14DC877B1294FFB3885774C5973B858 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/everauto/zTasker/2.2.5/everauto.zTasker.locale.en-US.yaml b/manifests/e/everauto/zTasker/2.2.5/everauto.zTasker.locale.en-US.yaml new file mode 100644 index 0000000000000..d560ab0f2c09d --- /dev/null +++ b/manifests/e/everauto/zTasker/2.2.5/everauto.zTasker.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: everauto.zTasker +PackageVersion: 2.2.5 +PackageLocale: en-US +Publisher: everauto +PublisherUrl: https://www.everauto.net/ +PublisherSupportUrl: https://bbs.everauto.net/ +PackageName: zTasker +PackageUrl: https://www.everauto.net/ +License: Proprietary +Copyright: Copyright @ 2023-now everauto.net All rights reserved. +ShortDescription: One-click efficiency booster +Description: |- + zTasker is a task automation tool that can be triggered in a variety of ways to perform a variety of automation tasks with but not limited to schedule or hotkeys + zTasker's goal is to replace most automation scenarios with a graphical approach. + It supports 100+ task types, 30+ schedule/conditional trigger methods. + Task list can be edited, arranged, moved and changed at will. zTasker supports task execution logs, backing up task list and other data. + It supports task logs, automatic updates, etc. +Tags: +- automate +- automation +- hotkey +- schedule +- task +ReleaseNotesUrl: https://www.everauto.net/update.html +Documentations: +- DocumentLabel: Tips + DocumentUrl: https://bbs.everauto.net/forum.php?mod=viewthread&tid=1 +- DocumentLabel: FAQ + DocumentUrl: https://bbs.everauto.net/forum.php?mod=viewthread&tid=7 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/everauto/zTasker/2.2.5/everauto.zTasker.locale.zh-CN.yaml b/manifests/e/everauto/zTasker/2.2.5/everauto.zTasker.locale.zh-CN.yaml new file mode 100644 index 0000000000000..922efa5fe6e22 --- /dev/null +++ b/manifests/e/everauto/zTasker/2.2.5/everauto.zTasker.locale.zh-CN.yaml @@ -0,0 +1,60 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: everauto.zTasker +PackageVersion: 2.2.5 +PackageLocale: zh-CN +Publisher: everauto +PublisherUrl: https://www.everauto.net/ +PublisherSupportUrl: https://bbs.everauto.net/ +PackageName: zTasker +PackageUrl: https://www.everauto.net/ +License: 专有软件 +Copyright: Copyright @ 2023-现在 everauto.net 版权所有 +ShortDescription: 一键式效率倍增器 +Description: |- + zTasker 是一个自动化任务工具,不仅仅是定时或者热键,它可以采用多种触发方式执行多种自动化任务 + zTasker 的目标是用图形化的方式取代大部分自动化场景操作 + 支持 100+ 种任务类型,30+ 种定时/条件执行方法 + 任务列表随意编辑、排列、移动、更改类型,支持任务执行日志,支持任务列表等数据的备份 + 支持任务日志,支持自动更新等 +Tags: +- 任务 +- 任务计划 +- 定时 +- 快捷键 +- 热键 +- 自动化 +ReleaseNotes: |- + 新增: + **任务设置,支持变量替换处,增加下拉按钮,可自动输入变量 + **任务设置,进程选择处,增加……按钮,可以弹出列表选择进程名称 + **复合任务中,保存变量处,会自动推荐缺省名称 + 任务->网络->http 请求,增加超时设置 + 任务->窗口->置顶窗口,增加高亮红色边框设置 + 程序->运行程序,以管理员身份启动 zTasker 时,添加降权运行说明 + 任务列表,下次运行时间显示周几,方便查看是否周末,选项里可以开关 + + 改进: + **修改未检测到 Python 时的修复方式,完全自定义,随时编辑 + 支持变量替换处的输入框,编辑窗口确定前会验证有效性 + 任务编辑窗口加载更快 + + 修复: + 复合任务无法抓窗口、进程名称问题 + 二次调用的命令行参数不处理问题 + 自动矫正任务旧版任务参数,导致丢失内容的问题 + 剪贴板写入文件任务,无法自动替换参数变量的问题 + 备份文件可能失败的问题 + 环境变量展开在字符串超过 10K 的时候会被截断问题 + 内置热键无法切换显示隐藏问题 + + 其它改进和修复 +ReleaseNotesUrl: https://www.everauto.net/update.html +Documentations: +- DocumentLabel: 使用技巧 + DocumentUrl: https://bbs.everauto.net/forum.php?mod=viewthread&tid=1 +- DocumentLabel: 疑难解答 + DocumentUrl: https://bbs.everauto.net/forum.php?mod=viewthread&tid=7 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/everauto/zTasker/2.2.5/everauto.zTasker.yaml b/manifests/e/everauto/zTasker/2.2.5/everauto.zTasker.yaml new file mode 100644 index 0000000000000..ee984de56500a --- /dev/null +++ b/manifests/e/everauto/zTasker/2.2.5/everauto.zTasker.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: everauto.zTasker +PackageVersion: 2.2.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/Firezone/Client/GUI/1.5.5/Firezone.Client.GUI.installer.yaml b/manifests/f/Firezone/Client/GUI/1.5.5/Firezone.Client.GUI.installer.yaml new file mode 100644 index 0000000000000..353d690a3d8bd --- /dev/null +++ b/manifests/f/Firezone/Client/GUI/1.5.5/Firezone.Client.GUI.installer.yaml @@ -0,0 +1,21 @@ +# Created with WinGet Releaser using komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Firezone.Client.GUI +PackageVersion: 1.5.5 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +ProductCode: '{8E6631DA-2323-4BC6-B12C-D0271FE6DB91}' +ReleaseDate: 2025-07-05 +AppsAndFeaturesEntries: +- ProductCode: '{8E6631DA-2323-4BC6-B12C-D0271FE6DB91}' + UpgradeCode: '{8AEF9B86-7239-57FE-9F44-5E8928AAA545}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Firezone' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/firezone/firezone/releases/download/gui-client-1.5.5/firezone-client-gui-windows_1.5.5_x86_64.msi + InstallerSha256: 06D7DD99922FBF04C676C9A309C88E4EC0707A7FF78C465EAE9E9B5984492CD6 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/Firezone/Client/GUI/1.5.5/Firezone.Client.GUI.locale.en-US.yaml b/manifests/f/Firezone/Client/GUI/1.5.5/Firezone.Client.GUI.locale.en-US.yaml new file mode 100644 index 0000000000000..0b065dc56d958 --- /dev/null +++ b/manifests/f/Firezone/Client/GUI/1.5.5/Firezone.Client.GUI.locale.en-US.yaml @@ -0,0 +1,25 @@ +# Created with WinGet Releaser using komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Firezone.Client.GUI +PackageVersion: 1.5.5 +PackageLocale: en-US +Publisher: Firezone +PublisherUrl: https://github.com/firezone +PublisherSupportUrl: https://github.com/firezone/firezone/issues +PackageName: Firezone +PackageUrl: https://github.com/firezone/firezone +License: Apache-2.0 +LicenseUrl: https://github.com/firezone/firezone/blob/HEAD/LICENSE +ShortDescription: GUI Client for the Firezone zero-trust access platform. +Tags: +- VPN +- remote-access +- zero-trust +ReleaseNotes: Please see our changelog for more details. +ReleaseNotesUrl: https://firezone.dev/changelog +Documentations: +- DocumentLabel: Help + DocumentUrl: https://firezone.dev/support +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/f/Firezone/Client/GUI/1.5.5/Firezone.Client.GUI.yaml b/manifests/f/Firezone/Client/GUI/1.5.5/Firezone.Client.GUI.yaml new file mode 100644 index 0000000000000..f1456e8641da2 --- /dev/null +++ b/manifests/f/Firezone/Client/GUI/1.5.5/Firezone.Client.GUI.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Firezone.Client.GUI +PackageVersion: 1.5.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/Fly-io/flyctl/0.3.152/Fly-io.flyctl.installer.yaml b/manifests/f/Fly-io/flyctl/0.3.152/Fly-io.flyctl.installer.yaml new file mode 100644 index 0000000000000..76076589a4234 --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.3.152/Fly-io.flyctl.installer.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Fly-io.flyctl +PackageVersion: 0.3.152 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: flyctl.exe +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/superfly/flyctl/releases/download/v0.3.152/flyctl_0.3.152_Windows_x86_64.zip + InstallerSha256: 1E85E0E13D8AB830840441C90976B90F6BEBA97D63EF14FC6E697F0BC3270401 +- Architecture: arm64 + InstallerUrl: https://github.com/superfly/flyctl/releases/download/v0.3.152/flyctl_0.3.152_Windows_arm64.zip + InstallerSha256: 2C5623E02C6506D81E0EC5D92DAEDF26E2060E415E7D11240882E0F22FEA957D +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/Fly-io/flyctl/0.3.152/Fly-io.flyctl.locale.en-US.yaml b/manifests/f/Fly-io/flyctl/0.3.152/Fly-io.flyctl.locale.en-US.yaml new file mode 100644 index 0000000000000..5f53f6b211e4d --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.3.152/Fly-io.flyctl.locale.en-US.yaml @@ -0,0 +1,26 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Fly-io.flyctl +PackageVersion: 0.3.152 +PackageLocale: en-US +Publisher: Fly.io +PublisherUrl: https://fly.io/ +PublisherSupportUrl: https://community.fly.io/ +PrivacyUrl: https://fly.io/legal/privacy-policy +PackageName: flyctl +PackageUrl: https://github.com/superfly/flyctl +License: Apache-2.0 +LicenseUrl: https://github.com/superfly/flyctl/blob/HEAD/LICENSE +ShortDescription: Command line tools for fly.io services +Tags: +- cli +- fly +- heroku +ReleaseNotes: |- + Changelog + - 73691cd Fix nil pointer dereference in mcp add command (#4468) + - ee0ccdb Convert Build.Compose from string to struct with auto-detection (#4463) +ReleaseNotesUrl: https://github.com/superfly/flyctl/releases/tag/v0.3.152 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/f/Fly-io/flyctl/0.3.152/Fly-io.flyctl.locale.ko-KR.yaml b/manifests/f/Fly-io/flyctl/0.3.152/Fly-io.flyctl.locale.ko-KR.yaml new file mode 100644 index 0000000000000..15c5dc52d84c6 --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.3.152/Fly-io.flyctl.locale.ko-KR.yaml @@ -0,0 +1,26 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Fly-io.flyctl +PackageVersion: 0.3.152 +PackageLocale: ko-KR +Publisher: Fly.io +PublisherUrl: https://fly.io/ +PublisherSupportUrl: https://community.fly.io/ +PrivacyUrl: https://fly.io/legal/privacy-policy +PackageName: flyctl +PackageUrl: https://github.com/superfly/flyctl +License: Apache-2.0 +LicenseUrl: https://github.com/superfly/flyctl/blob/HEAD/LICENSE +ShortDescription: fly.io 서비스를 위한 커맨드 라인 도구 +Tags: +- cli +- fly +- heroku +ReleaseNotes: |- + f2d3a9f8 Revert "Even more remote heartbeat improvements (#3594)" (#3618) + f2416e1a Hide sentry from launch plan unless selected (#3616) + 61fa0095 Add Rails + Tigris support to fly launch (#3598) + d970980d Implement unit test with in-memory server implementation. (#3613) +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/f/Fly-io/flyctl/0.3.152/Fly-io.flyctl.yaml b/manifests/f/Fly-io/flyctl/0.3.152/Fly-io.flyctl.yaml new file mode 100644 index 0000000000000..bca0d3cac982f --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.3.152/Fly-io.flyctl.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Fly-io.flyctl +PackageVersion: 0.3.152 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/FunRoutine/WorkFlowy/4.2.2507081219/FunRoutine.WorkFlowy.installer.yaml b/manifests/f/FunRoutine/WorkFlowy/4.2.2507081219/FunRoutine.WorkFlowy.installer.yaml new file mode 100644 index 0000000000000..069ab97d429b5 --- /dev/null +++ b/manifests/f/FunRoutine/WorkFlowy/4.2.2507081219/FunRoutine.WorkFlowy.installer.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: FunRoutine.WorkFlowy +PackageVersion: 4.2.2507081219 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- workflowy +ProductCode: 338bed7b-1324-505d-8cb6-5c266cbaa6b3 +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/workflowy/desktop/releases/download/v4.2.2507081219/WorkFlowy-Installer.exe + InstallerSha256: 25C203591BC56EBBD66BC7EDCD9AD5D2588DEA46C34E071443883C4027C120DF +- Architecture: x64 + InstallerUrl: https://github.com/workflowy/desktop/releases/download/v4.2.2507081219/WorkFlowy-Installer.exe + InstallerSha256: 25C203591BC56EBBD66BC7EDCD9AD5D2588DEA46C34E071443883C4027C120DF +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/FunRoutine/WorkFlowy/4.2.2507081219/FunRoutine.WorkFlowy.locale.en-US.yaml b/manifests/f/FunRoutine/WorkFlowy/4.2.2507081219/FunRoutine.WorkFlowy.locale.en-US.yaml new file mode 100644 index 0000000000000..eec5768461bfc --- /dev/null +++ b/manifests/f/FunRoutine/WorkFlowy/4.2.2507081219/FunRoutine.WorkFlowy.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: FunRoutine.WorkFlowy +PackageVersion: 4.2.2507081219 +PackageLocale: en-US +Publisher: WorkFlowy +PublisherUrl: https://workflowy.com/ +PublisherSupportUrl: https://workflowy.zendesk.com/ +PrivacyUrl: https://workflowy.com/privacy-policy/ +Author: FunRoutine Inc. +PackageName: WorkFlowy +PackageUrl: https://workflowy.com/ +License: Proprietary +Copyright: Copyright © 2024 WorkFlowy +ShortDescription: Collect your ideas, develop them, share them, and turn them into reality. +Tags: +- agenda +- calendar +- checklist +- gtd +- list +- memo +- memorandum +- notes +- schedule +- task +- to-do +- todo +ReleaseNotesUrl: https://github.com/workflowy/desktop/releases/tag/v4.2.2507081219 +PurchaseUrl: https://workflowy.com/pricing/ +Documentations: +- DocumentLabel: Guides + DocumentUrl: https://workflowy.com/guides/ +- DocumentLabel: Knowledge Base + DocumentUrl: https://workflowy.com/learn/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/f/FunRoutine/WorkFlowy/4.2.2507081219/FunRoutine.WorkFlowy.locale.zh-CN.yaml b/manifests/f/FunRoutine/WorkFlowy/4.2.2507081219/FunRoutine.WorkFlowy.locale.zh-CN.yaml new file mode 100644 index 0000000000000..22b2a2b7a5c70 --- /dev/null +++ b/manifests/f/FunRoutine/WorkFlowy/4.2.2507081219/FunRoutine.WorkFlowy.locale.zh-CN.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: FunRoutine.WorkFlowy +PackageVersion: 4.2.2507081219 +PackageLocale: zh-CN +Publisher: WorkFlowy +PublisherUrl: https://workflowy.com/ +PublisherSupportUrl: https://workflowy.zendesk.com/ +PrivacyUrl: https://workflowy.com/privacy-policy/ +Author: FunRoutine Inc. +PackageName: WorkFlowy +PackageUrl: https://workflowy.com/ +License: 专有软件 +Copyright: Copyright © 2024 WorkFlowy +ShortDescription: 收集你的想法,开发、分享它们,并将其变为现实。 +Tags: +- 任务 +- 列表 +- 备忘 +- 备忘录 +- 待办 +- 待办事项 +- 提醒事项 +- 日历 +- 日程 +- 日程管理 +- 时间管理 +- 清单 +- 笔记 +- 议程 +ReleaseNotesUrl: https://github.com/workflowy/desktop/releases/tag/v4.2.2507081219 +PurchaseUrl: https://workflowy.com/pricing/ +Documentations: +- DocumentLabel: 指南 + DocumentUrl: https://workflowy.com/guides/ +- DocumentLabel: 知识库 + DocumentUrl: https://workflowy.com/learn/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/f/FunRoutine/WorkFlowy/4.2.2507081219/FunRoutine.WorkFlowy.yaml b/manifests/f/FunRoutine/WorkFlowy/4.2.2507081219/FunRoutine.WorkFlowy.yaml new file mode 100644 index 0000000000000..3da0045cc1107 --- /dev/null +++ b/manifests/f/FunRoutine/WorkFlowy/4.2.2507081219/FunRoutine.WorkFlowy.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: FunRoutine.WorkFlowy +PackageVersion: 4.2.2507081219 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/FunRoutine/WorkFlowy/4.2.2507081809/FunRoutine.WorkFlowy.installer.yaml b/manifests/f/FunRoutine/WorkFlowy/4.2.2507081809/FunRoutine.WorkFlowy.installer.yaml new file mode 100644 index 0000000000000..7257f22cce881 --- /dev/null +++ b/manifests/f/FunRoutine/WorkFlowy/4.2.2507081809/FunRoutine.WorkFlowy.installer.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: FunRoutine.WorkFlowy +PackageVersion: 4.2.2507081809 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- workflowy +ProductCode: 338bed7b-1324-505d-8cb6-5c266cbaa6b3 +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/workflowy/desktop/releases/download/v4.2.2507081809/WorkFlowy-Installer.exe + InstallerSha256: 2A674EB28B54D2D4ECD16F2041E38D65E1D383ECCF51B39D07C6DE91F14FE230 +- Architecture: x64 + InstallerUrl: https://github.com/workflowy/desktop/releases/download/v4.2.2507081809/WorkFlowy-Installer.exe + InstallerSha256: 2A674EB28B54D2D4ECD16F2041E38D65E1D383ECCF51B39D07C6DE91F14FE230 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/FunRoutine/WorkFlowy/4.2.2507081809/FunRoutine.WorkFlowy.locale.en-US.yaml b/manifests/f/FunRoutine/WorkFlowy/4.2.2507081809/FunRoutine.WorkFlowy.locale.en-US.yaml new file mode 100644 index 0000000000000..0af9b2a1f6ed6 --- /dev/null +++ b/manifests/f/FunRoutine/WorkFlowy/4.2.2507081809/FunRoutine.WorkFlowy.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: FunRoutine.WorkFlowy +PackageVersion: 4.2.2507081809 +PackageLocale: en-US +Publisher: WorkFlowy +PublisherUrl: https://workflowy.com/ +PublisherSupportUrl: https://workflowy.zendesk.com/ +PrivacyUrl: https://workflowy.com/privacy-policy/ +Author: FunRoutine Inc. +PackageName: WorkFlowy +PackageUrl: https://workflowy.com/ +License: Proprietary +Copyright: Copyright © 2024 WorkFlowy +ShortDescription: Collect your ideas, develop them, share them, and turn them into reality. +Tags: +- agenda +- calendar +- checklist +- gtd +- list +- memo +- memorandum +- notes +- schedule +- task +- to-do +- todo +ReleaseNotesUrl: https://github.com/workflowy/desktop/releases/tag/v4.2.2507081809 +PurchaseUrl: https://workflowy.com/pricing/ +Documentations: +- DocumentLabel: Guides + DocumentUrl: https://workflowy.com/guides/ +- DocumentLabel: Knowledge Base + DocumentUrl: https://workflowy.com/learn/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/f/FunRoutine/WorkFlowy/4.2.2507081809/FunRoutine.WorkFlowy.locale.zh-CN.yaml b/manifests/f/FunRoutine/WorkFlowy/4.2.2507081809/FunRoutine.WorkFlowy.locale.zh-CN.yaml new file mode 100644 index 0000000000000..b712a7d0aad36 --- /dev/null +++ b/manifests/f/FunRoutine/WorkFlowy/4.2.2507081809/FunRoutine.WorkFlowy.locale.zh-CN.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: FunRoutine.WorkFlowy +PackageVersion: 4.2.2507081809 +PackageLocale: zh-CN +Publisher: WorkFlowy +PublisherUrl: https://workflowy.com/ +PublisherSupportUrl: https://workflowy.zendesk.com/ +PrivacyUrl: https://workflowy.com/privacy-policy/ +Author: FunRoutine Inc. +PackageName: WorkFlowy +PackageUrl: https://workflowy.com/ +License: 专有软件 +Copyright: Copyright © 2024 WorkFlowy +ShortDescription: 收集你的想法,开发、分享它们,并将其变为现实。 +Tags: +- 任务 +- 列表 +- 备忘 +- 备忘录 +- 待办 +- 待办事项 +- 提醒事项 +- 日历 +- 日程 +- 日程管理 +- 时间管理 +- 清单 +- 笔记 +- 议程 +ReleaseNotesUrl: https://github.com/workflowy/desktop/releases/tag/v4.2.2507081809 +PurchaseUrl: https://workflowy.com/pricing/ +Documentations: +- DocumentLabel: 指南 + DocumentUrl: https://workflowy.com/guides/ +- DocumentLabel: 知识库 + DocumentUrl: https://workflowy.com/learn/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/f/FunRoutine/WorkFlowy/4.2.2507081809/FunRoutine.WorkFlowy.yaml b/manifests/f/FunRoutine/WorkFlowy/4.2.2507081809/FunRoutine.WorkFlowy.yaml new file mode 100644 index 0000000000000..5f2b71aceea5a --- /dev/null +++ b/manifests/f/FunRoutine/WorkFlowy/4.2.2507081809/FunRoutine.WorkFlowy.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: FunRoutine.WorkFlowy +PackageVersion: 4.2.2507081809 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/GAM-Team/gam/7.12.01/GAM-Team.gam.installer.yaml b/manifests/g/GAM-Team/gam/7.12.01/GAM-Team.gam.installer.yaml new file mode 100644 index 0000000000000..a1441eb56911d --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.12.01/GAM-Team.gam.installer.yaml @@ -0,0 +1,30 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: GAM-Team.gam +PackageVersion: 7.12.01 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +InstallationMetadata: + DefaultInstallLocation: ./GAM7 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/GAM-team/GAM/releases/download/v7.12.01/gam-7.12.01-windows-x86_64.msi + InstallerSha256: B84A2D620AE5E47279D53CD780113789A55C9FC6EC12D7F9C8249ADD91F572DE + ProductCode: '{F2D70527-23BD-43B8-ABED-7A2AF5A33F8C}' + AppsAndFeaturesEntries: + - DisplayName: GAM7 + ProductCode: '{F2D70527-23BD-43B8-ABED-7A2AF5A33F8C}' + UpgradeCode: '{D86B52B2-EFE9-4F9D-8BA3-9D84B9B2D319}' +- Architecture: arm64 + InstallerUrl: https://github.com/GAM-team/GAM/releases/download/v7.12.01/gam-7.12.01-windows-arm64.msi + InstallerSha256: 6D684014D6FF3FBC5394356567D08D509C3A174CB1E2361748F67768A90D46EC + ProductCode: '{BD43CB1B-0067-4E38-9585-31242D6B705B}' + AppsAndFeaturesEntries: + - DisplayName: GAM7 + ProductCode: '{BD43CB1B-0067-4E38-9585-31242D6B705B}' + UpgradeCode: '{D86B52B2-EFE9-4F9D-8BA3-9D84B9B2D319}' +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-07-08 diff --git a/manifests/g/GAM-Team/gam/7.12.01/GAM-Team.gam.locale.en-US.yaml b/manifests/g/GAM-Team/gam/7.12.01/GAM-Team.gam.locale.en-US.yaml new file mode 100644 index 0000000000000..14ca50dd216a7 --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.12.01/GAM-Team.gam.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: GAM-Team.gam +PackageVersion: 7.12.01 +PackageLocale: en-US +Publisher: GAM Team - google-apps-manager@googlegroups.com +PublisherUrl: https://github.com/GAM-team +PublisherSupportUrl: https://github.com/GAM-team/GAM/issues +PackageName: gam +PackageUrl: https://github.com/GAM-team/GAM +License: Apache-2.0 +LicenseUrl: https://github.com/GAM-team/GAM/blob/HEAD/LICENSE +ShortDescription: command line management for Google Workspace +Tags: +- gam +- google +- google-admin-sdk +- google-api +- google-apps +- google-calendar +- google-cloud +- google-drive +- google-workspace +- gsuite +- oauth2 +- oauth2-client +- python +ReleaseNotesUrl: https://github.com/GAM-team/GAM/releases/tag/v7.12.01 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/GAM-team/GAM/wiki +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/g/GAM-Team/gam/7.12.01/GAM-Team.gam.yaml b/manifests/g/GAM-Team/gam/7.12.01/GAM-Team.gam.yaml new file mode 100644 index 0000000000000..9d2d7b3889a19 --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.12.01/GAM-Team.gam.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: GAM-Team.gam +PackageVersion: 7.12.01 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/g/GDevelop/GDevelop/5.5.236/GDevelop.GDevelop.installer.yaml b/manifests/g/GDevelop/GDevelop/5.5.236/GDevelop.GDevelop.installer.yaml new file mode 100644 index 0000000000000..ba8348b3bf1d4 --- /dev/null +++ b/manifests/g/GDevelop/GDevelop/5.5.236/GDevelop.GDevelop.installer.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: GDevelop.GDevelop +PackageVersion: 5.5.236 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: c2a9b91e-8206-5b4e-b81d-9aa27463c28e +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/4ian/GDevelop/releases/download/v5.5.236/GDevelop-5-Setup-5.5.236.exe + InstallerSha256: A30919FE232B7CC18FCB2B001D42AB1AFB03EB73DF9BCA73E4D91BA7E1D6872A + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/4ian/GDevelop/releases/download/v5.5.236/GDevelop-5-Setup-5.5.236.exe + InstallerSha256: A30919FE232B7CC18FCB2B001D42AB1AFB03EB73DF9BCA73E4D91BA7E1D6872A + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/GDevelop/GDevelop/5.5.236/GDevelop.GDevelop.locale.en-US.yaml b/manifests/g/GDevelop/GDevelop/5.5.236/GDevelop.GDevelop.locale.en-US.yaml new file mode 100644 index 0000000000000..39e2436c3379b --- /dev/null +++ b/manifests/g/GDevelop/GDevelop/5.5.236/GDevelop.GDevelop.locale.en-US.yaml @@ -0,0 +1,80 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: GDevelop.GDevelop +PackageVersion: 5.5.236 +PackageLocale: en-US +Publisher: GDevelop Team +PublisherUrl: http://www.florianrival.com/ +PublisherSupportUrl: https://github.com/4ian/GDevelop/issues +PrivacyUrl: https://gdevelop.io/page/privacy-policy +Author: Florian Rival +PackageName: GDevelop +PackageUrl: https://gdevelop.io/ +License: MIT +LicenseUrl: https://github.com/4ian/GDevelop/blob/HEAD/LICENSE.md +Copyright: Copyright (c) 2015-present Florian Rival +ShortDescription: The fastest, easiest, most powerful no-code game engine. +Description: "GDevelop is a free, open-source game engine that's 10x easier and faster to use than anything else. Build from anywhere — even on your phone. Publish everywhere: iOS, Android, Steam, web, gaming platforms. Reach millions of players or create the next hit game you've been dreaming of." +Moniker: gdevelop +Tags: +- develop +- development +- game +ReleaseNotes: |- + Note for users who tried version 5.5.235 (pre-release version): the elevation and rotation properties of the Directional Light have been updated. You need to update them in your game. + 🕶️ Introducing basic support for shadows + + Realistic shadows can now be rendered for 3D objects in your scenes using a Directional Light. By default, all new games and new scene layers now come with both a Directional Light and an Ambient Light. This gives a result similar to sunlight casting shadows in the real world. + - 3D models and 3D cubes are now casting shadows. To make sure they appear properly: + - Set the object’s material to Standard (not Basic, which doesn’t react to lighting). + - Make sure Shadow Casting and Shadow Receiving are enabled. + This is done by default for new objects you create or import from the Asset Store. + - Shadows are rendered around the camera on an area that is large enough for most games while giving still good quality results. This means they should work out of the box and be adapted to most games, including large maps. + You can adapt the quality of shadows, intensity of the light (and so shadows), the size of the rendered area by editing the 3D effects of the layer in the scene (as for other effects). + Note: power users may be interested to look at the new Advanced 3D Features community extension by @PANDAKO-GitHub. This is an unofficial extension but has many effects and features extending the 3D capabilities of GDevelop. + + Shadows in the 3D platformer example. + Some tweaks and changes to shadow rendering might happen in the next versions according to usability and performance (notably on mobile). For now, only shadows rendered by a unique Directional Light in the scene are supported. 3D lights ("Spotlights") will be added later after ensuring they can be used without risking big performance drops. + 📚 New Premium courses in the "Learn tab" + Two new premium courses are now available in the "Learn" tab: + - Make a Platformer Game: learn how to build a modern 2D platformer game step by step. This course walks you through designing two levels with effects like slow motion and screen transitions and gameplay mechanics such as smash and dash. You'll also implement interactive elements (checkpoints, respawn logic...). Each of the 6 chapters includes an exclusive video tutorial and a ready-to-use template. + - How To Market & Sell Your Game: a complete course explaining what to know about game marketing. Spread the word on social media, attract players, and how to start generating revenue. The course has real-world case studies, actionable tips, and proven strategies to help you grow your community, build momentum, and successfully market your game. + 🟡 All these GDevelop-exclusive courses will soon become distinct & unique products, that can be purchased (lifetime access) without a monthly subscription. + In the meantime, they are accessible for a week for everybody who has a subscription (Silver, Gold or Pro). + The full GDevelop Master Course, featuring 15 chapters including dozens of tasks and step-by-step answers, will remain available to all subscribers. Thank you for your support! + + 💝 Improvements + - Allow to unload scene resources when a scene is exited (thanks @ViktorVovk!) + - This adds two new settings, available in the Project Properties and in the Scene Properties dialog, to allow to specify the strategy for preloading resources of the scenes and unloading them. By default, a game will preload in background the resources of all scenes. It will never unload these resources (so scene switching is fast). + - You can now choose to unload the resources of a scene when the scene is left using the "Resources unloading" field. If the scene is launched again later, it will load its resources again. + - You can also choose to change the preloading to disable it for all scenes (by modifying the setting in the project properties) or enable it/disable it on a scene by scene basis. This can be useful for large or modular games where you anticipate the player to only play some scenes, or if you want to reduce the resources that needs to be loaded on a web game. + - Add user friendly labels to selector fields in object and effect properties. + - [Platformer] Fix wrongly allowed double jump when jumping from a slope. + - Show an highlight on newly generated AI events to make it easier to find them + 🐛 Bug fixes + - Update "Pick all instances" to avoid crashes when a lot of objects are picked (thanks @arthuro555!) + - Fix resource selector text color on light theme + - Fix a crash when using the "Fixed rotation" action on a 3D character + - Fix "Wheel offset Z" and "Front wheel drive" properties of the 3D car behavior + - Fix missing MassCenterZ expression for the 3D physics behavior + New in 5.5.236: + - Fix directional light orientation and missing settings in the 3D cube editor + - Fix hot-reloading of custom objects + - Fix custom objects being destroyed too soon + ⚙️ Extensions + - [Community] [Advanced 3D Features] Provides advanced features for augmenting the 3D capabilities of GDevelop - thanks @PANDAKO-GitHub! + - Add condition for checking Panel Sprite Button label text + - Update "Get user session data" expression in CrazyGamesAdApi to get and return a String + New in 5.5.236: + - [Reviewed] [3D particles] Fix a crash when there is no animation nor frame + - [Reviewed] [Advanced platformer movements] Allow to force the dash direction by simulating left or right key + 🕹 Examples + - Added shadow on 3D starter games and "3D car coin hunt" example. + - Fixed the road physics shape Z offset in "3D car coin hunt". + 🕹 Premium Game Templates + - Fix RTS template assets (thanks @VegeTato!) +ReleaseNotesUrl: https://github.com/4ian/GDevelop/releases/tag/v5.5.236 +PurchaseUrl: https://gdevelop.io/pricing +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GDevelop/GDevelop/5.5.236/GDevelop.GDevelop.locale.zh-CN.yaml b/manifests/g/GDevelop/GDevelop/5.5.236/GDevelop.GDevelop.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a7d3a45c60c54 --- /dev/null +++ b/manifests/g/GDevelop/GDevelop/5.5.236/GDevelop.GDevelop.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: GDevelop.GDevelop +PackageVersion: 5.5.236 +PackageLocale: zh-CN +Publisher: GDevelop Team +PublisherUrl: http://www.florianrival.com/ +PublisherSupportUrl: https://github.com/4ian/GDevelop/issues +PrivacyUrl: https://gdevelop.io/page/privacy-policy +Author: Florian Rival +PackageName: GDevelop +PackageUrl: https://gdevelop.io/ +License: MIT +LicenseUrl: https://github.com/4ian/GDevelop/blob/HEAD/LICENSE.md +Copyright: Copyright (c) 2015-present Florian Rival +ShortDescription: 最快、最简单、最强大的无代码游戏引擎。 +Description: GDevelop 是一款免费的开源游戏引擎,使用起来比其它任何引擎都要简单和快速 10 倍。在任何地方都能创建,甚至是在手机上。在任何地方都能发布:iOS、Android、Steam、网页和游戏平台。与数百万玩家见面,或制作下一款你梦寐以求的热门游戏。 +Tags: +- 开发 +ReleaseNotesUrl: https://github.com/4ian/GDevelop/releases/tag/v5.5.236 +PurchaseUrl: https://gdevelop.io/pricing +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GDevelop/GDevelop/5.5.236/GDevelop.GDevelop.yaml b/manifests/g/GDevelop/GDevelop/5.5.236/GDevelop.GDevelop.yaml new file mode 100644 index 0000000000000..4bb8af3d2ede6 --- /dev/null +++ b/manifests/g/GDevelop/GDevelop/5.5.236/GDevelop.GDevelop.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: GDevelop.GDevelop +PackageVersion: 5.5.236 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Git/Git/2.50.1/Git.Git.installer.yaml b/manifests/g/Git/Git/2.50.1/Git.Git.installer.yaml new file mode 100644 index 0000000000000..b9a5b26a8c2f3 --- /dev/null +++ b/manifests/g/Git/Git/2.50.1/Git.Git.installer.yaml @@ -0,0 +1,39 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Git.Git +PackageVersion: 2.50.1 +InstallerType: inno +InstallerSwitches: + Silent: /SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART + SilentWithProgress: /SP- /SILENT /SUPPRESSMSGBOXES /NORESTART + Custom: /COMPONENTS=icons,ext,gitlfs,assoc,assoc_sh,consolefont,windowsterminal,scalar +UpgradeBehavior: install +Commands: +- git +FileExtensions: +- gitattributes +- gitignore +- gitmodules +- sh +ReleaseDate: 2025-07-08 +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/git-for-windows/git/releases/download/v2.50.1.windows.1/Git-2.50.1-64-bit.exe + InstallerSha256: 47FE1D46DBB7111F6693B04A8BD95FC869CE2062DF7B4822B52849548FB457E4 +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/git-for-windows/git/releases/download/v2.50.1.windows.1/Git-2.50.1-64-bit.exe + InstallerSha256: 47FE1D46DBB7111F6693B04A8BD95FC869CE2062DF7B4822B52849548FB457E4 +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/git-for-windows/git/releases/download/v2.50.1.windows.1/Git-2.50.1-arm64.exe + InstallerSha256: 26E71DB68BF5DD2AD47E13A07FB050FA0E8AB7E9802401B32BB55F2626F15F55 +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/git-for-windows/git/releases/download/v2.50.1.windows.1/Git-2.50.1-arm64.exe + InstallerSha256: 26E71DB68BF5DD2AD47E13A07FB050FA0E8AB7E9802401B32BB55F2626F15F55 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Git/Git/2.50.1/Git.Git.locale.en-US.yaml b/manifests/g/Git/Git/2.50.1/Git.Git.locale.en-US.yaml new file mode 100644 index 0000000000000..f1709b5bcf0c1 --- /dev/null +++ b/manifests/g/Git/Git/2.50.1/Git.Git.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.10.0.schema.json + +PackageIdentifier: Git.Git +PackageVersion: 2.50.1 +PackageLocale: en-US +Publisher: The Git Development Community +PublisherUrl: https://gitforwindows.org/ +PublisherSupportUrl: https://github.com/git-for-windows/git/issues +PackageName: Git +PackageUrl: https://gitforwindows.org/ +License: GPL-2.0 +LicenseUrl: https://github.com/git-for-windows/build-extra/blob/HEAD/LICENSE.txt +Copyright: Copyright (C) 1989, 1991 Free Software Foundation, Inc. +ShortDescription: A free and open source distributed version control system +Description: |- + Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency. + Git for Windows focuses on offering a lightweight, native set of tools that bring the full feature set of the Git SCM to Windows while providing appropriate user interfaces for experienced Git users and novices alike. +Moniker: git +Tags: +- git +- vcs +ReleaseNotes: |- + Changes since Git for Windows v2.50.0(2) (July 1st 2025) + This is a security fix release, addressing CVE-2024-50349, CVE-2024-52006, CVE-2025-27613, CVE-2025-27614, CVE-2025-46334, CVE-2025-46835, CVE-2025-48384, CVE-2025-48385, and CVE-2025-48386. + New Features + - Comes with Git v2.50.1. + Bug Fixes + - CVE-2025-27613, Gitk: When a user clones an untrusted repository and runs Gitk without additional command arguments, any writable file can be created and truncated. The option "Support per-file encoding" must have been enabled. The operation "Show origin of this line" is affected as well, regardless of the option being enabled or not. + - CVE-2025-27614, Gitk: A Git repository can be crafted in such a way that a user who has cloned the repository can be tricked into running any script supplied by the attacker by invoking gitk filename, where filename has a particular structure. + - CVE-2025-46334, Git GUI (Windows only): A malicious repository can ship versions of sh.exe or typical textconv filter programs such as astextplain. On Windows, path lookup can find such executables in the worktree. These programs are invoked when the user selects "Git Bash" or "Browse Files" from the menu. + - CVE-2025-46835, Git GUI: When a user clones an untrusted repository and is tricked into editing a file located in a maliciously named directory in the repository, then Git GUI can create and overwrite any writable file. + - CVE-2025-48384, Git: When reading a config value, Git strips any trailing carriage return and line feed (CRLF). When writing a config entry, values with a trailing CR are not quoted, causing the CR to be lost when the config is later read. When initializing a submodule, if the submodule path contains a trailing CR, the altered path is read resulting in the submodule being checked out to an incorrect location. If a symlink exists that points the altered path to the submodule hooks directory, and the submodule contains an executable post-checkout hook, the script may be unintentionally executed after checkout. + - CVE-2025-48385, Git: When cloning a repository Git knows to optionally fetch a bundle advertised by the remote server, which allows the server-side to offload parts of the clone to a CDN. The Git client does not perform sufficient validation of the advertised bundles, which allows the remote side to perform protocol injection. This protocol injection can cause the client to write the fetched bundle to a location controlled by the adversary. The fetched content is fully controlled by the server, which can in the worst case lead to arbitrary code execution. + - CVE-2025-48386, Git: The wincred credential helper uses a static buffer (target) as a unique key for storing and comparing against internal storage. This credential helper does not properly bounds check the available space remaining in the buffer before appending to it with wcsncat(), leading to potential buffer overflows. + Note: As a courtesy, this release includes a last, unplanned, "after warranty" 32-bit installer. +ReleaseNotesUrl: https://github.com/git-for-windows/git/releases/tag/v2.50.1.windows.1 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/git-for-windows/git/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Git/Git/2.50.1/Git.Git.locale.zh-CN.yaml b/manifests/g/Git/Git/2.50.1/Git.Git.locale.zh-CN.yaml new file mode 100644 index 0000000000000..ba873bbb1ba8b --- /dev/null +++ b/manifests/g/Git/Git/2.50.1/Git.Git.locale.zh-CN.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Git.Git +PackageVersion: 2.50.1 +PackageLocale: zh-CN +Publisher: The Git Development Community +PublisherUrl: https://gitforwindows.org/ +PublisherSupportUrl: https://github.com/git-for-windows/git/issues +PackageName: Git +PackageUrl: https://gitforwindows.org/ +License: GPL-2.0 +LicenseUrl: https://github.com/git-for-windows/build-extra/blob/HEAD/LICENSE.txt +Copyright: Copyright (C) Free Software Foundation, Inc. +ShortDescription: 免费开源的分布式版本控制系统 +Description: |- + Git 是一个免费开源的分布式版本控制系统,旨在快速高效地处理从小型到超大型的各种项目。 + Git for Windows 的重点是提供一套轻量级的本地工具,将 Git SCM 的全部功能集引入 Windows,同时为有经验的 Git 用户和新手提供合适的用户界面。 +Tags: +- git +- 版本控制系统 +ReleaseNotesUrl: https://github.com/git-for-windows/git/releases/tag/v2.50.1.windows.1 +Documentations: +- DocumentLabel: 维基 + DocumentUrl: https://github.com/git-for-windows/git/wiki +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Git/Git/2.50.1/Git.Git.yaml b/manifests/g/Git/Git/2.50.1/Git.Git.yaml new file mode 100644 index 0000000000000..4f2b7fd2d3721 --- /dev/null +++ b/manifests/g/Git/Git/2.50.1/Git.Git.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Git.Git +PackageVersion: 2.50.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/GitHub/GitHubDesktop/3.5.1/GitHub.GitHubDesktop.installer.yaml b/manifests/g/GitHub/GitHubDesktop/3.5.1/GitHub.GitHubDesktop.installer.yaml new file mode 100644 index 0000000000000..5e9535f3cbc90 --- /dev/null +++ b/manifests/g/GitHub/GitHubDesktop/3.5.1/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.10.0.schema.json + +PackageIdentifier: GitHub.GitHubDesktop +PackageVersion: 3.5.1 +UpgradeBehavior: install +Protocols: +- github-windows +- x-github-client +- x-github-desktop-auth +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x64 + InstallerType: exe + Scope: user + InstallerUrl: https://desktop.githubusercontent.com/releases/3.5.1-42a2e52a/GitHubDesktopSetup-x64.exe + InstallerSha256: D15C3E5476B52EEBFDCCC47DFF160AFCA3605FC10DD8E3421EEFBE54FBC5ED5F + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent + ProductCode: GitHubDesktop +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://desktop.githubusercontent.com/releases/3.5.1-42a2e52a/GitHubDesktopSetup-x64.msi + InstallerSha256: D890979E3F9153394D16F024BE1894A3122303D7C5886C3D883582A6D010C6E6 + ProductCode: '{E673C6F7-F8B0-4F41-AC59-F293A07E2F85}' + AppsAndFeaturesEntries: + - DisplayName: GitHub Desktop Deployment Tool + ProductCode: '{E673C6F7-F8B0-4F41-AC59-F293A07E2F85}' + UpgradeCode: '{00D8E2EE-13EA-5BEB-87F0-70EFC46A7D4A}' +- Architecture: arm64 + InstallerType: exe + Scope: user + InstallerUrl: https://desktop.githubusercontent.com/releases/3.5.1-42a2e52a/GitHubDesktopSetup-arm64.exe + InstallerSha256: E2CAC4411C2D2665BFA253EC8E23F43BC162DC26AFC1EA6C42B305544FF51113 + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent + ProductCode: GitHubDesktop +- Architecture: arm64 + InstallerType: wix + Scope: machine + InstallerUrl: https://desktop.githubusercontent.com/releases/3.5.1-42a2e52a/GitHubDesktopSetup-arm64.msi + InstallerSha256: 9B8F6DAD1F9130E4AC15989ED9B5F31EDC1CE45D4768976B88BC2AE3AC71F5BF + ProductCode: '{03B0014E-147E-4F02-B6C8-324633D0D294}' + AppsAndFeaturesEntries: + - DisplayName: GitHub Desktop Deployment Tool + ProductCode: '{03B0014E-147E-4F02-B6C8-324633D0D294}' + UpgradeCode: '{00D8E2EE-13EA-5BEB-87F0-70EFC46A7D4A}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/GitHub/GitHubDesktop/3.5.1/GitHub.GitHubDesktop.locale.en-US.yaml b/manifests/g/GitHub/GitHubDesktop/3.5.1/GitHub.GitHubDesktop.locale.en-US.yaml new file mode 100644 index 0000000000000..6c5cc43e5b5ca --- /dev/null +++ b/manifests/g/GitHub/GitHubDesktop/3.5.1/GitHub.GitHubDesktop.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: GitHub.GitHubDesktop +PackageVersion: 3.5.1 +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] Use all changes to generate a commit message when amending commits - #20664 + [Improved] Upgrade embedded Git to v2.47.3 on macOS, and to v2.47.3.windows.1 on Windows +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://docs.github.com/desktop +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GitHub/GitHubDesktop/3.5.1/GitHub.GitHubDesktop.locale.zh-CN.yaml b/manifests/g/GitHub/GitHubDesktop/3.5.1/GitHub.GitHubDesktop.locale.zh-CN.yaml new file mode 100644 index 0000000000000..d56f3212dcad8 --- /dev/null +++ b/manifests/g/GitHub/GitHubDesktop/3.5.1/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.10.0.schema.json + +PackageIdentifier: GitHub.GitHubDesktop +PackageVersion: 3.5.1 +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.10.0 diff --git a/manifests/g/GitHub/GitHubDesktop/3.5.1/GitHub.GitHubDesktop.yaml b/manifests/g/GitHub/GitHubDesktop/3.5.1/GitHub.GitHubDesktop.yaml new file mode 100644 index 0000000000000..10bfb0f2fe570 --- /dev/null +++ b/manifests/g/GitHub/GitHubDesktop/3.5.1/GitHub.GitHubDesktop.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: GitHub.GitHubDesktop +PackageVersion: 3.5.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/GitKraken/cli/3.1.4/GitKraken.cli.installer.yaml b/manifests/g/GitKraken/cli/3.1.4/GitKraken.cli.installer.yaml new file mode 100644 index 0000000000000..e991dfe1a9af4 --- /dev/null +++ b/manifests/g/GitKraken/cli/3.1.4/GitKraken.cli.installer.yaml @@ -0,0 +1,34 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json +PackageIdentifier: GitKraken.cli +PackageVersion: 3.1.4 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-07-08" +Installers: + - Architecture: x86 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: gk_3.1.4_windows_386\gk.exe + PortableCommandAlias: gk + InstallerUrl: https://github.com/gitkraken/gk-cli/releases/download/v3.1.4/gk_3.1.4_windows_386.zip + InstallerSha256: b3706a8e3d520a1a48978c8bc591b4bbbf55695a6ce40048dbfe545bf28542cd + UpgradeBehavior: uninstallPrevious + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: gk_3.1.4_windows_arm64\gk.exe + PortableCommandAlias: gk + InstallerUrl: https://github.com/gitkraken/gk-cli/releases/download/v3.1.4/gk_3.1.4_windows_arm64.zip + InstallerSha256: b465cd7705c5edcbe2e8a87c0cd519008000d9448def6d43aa652415bfb0ac0a + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: gk_3.1.4_windows_amd64\gk.exe + PortableCommandAlias: gk + InstallerUrl: https://github.com/gitkraken/gk-cli/releases/download/v3.1.4/gk_3.1.4_windows_amd64.zip + InstallerSha256: 0051a2833a604631417e22c4442b44bee0adac10c09e2ffe99aa03a8acca92e8 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/GitKraken/cli/3.1.4/GitKraken.cli.locale.en-US.yaml b/manifests/g/GitKraken/cli/3.1.4/GitKraken.cli.locale.en-US.yaml new file mode 100644 index 0000000000000..5b3234db8329e --- /dev/null +++ b/manifests/g/GitKraken/cli/3.1.4/GitKraken.cli.locale.en-US.yaml @@ -0,0 +1,36 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +PackageIdentifier: GitKraken.cli +PackageVersion: 3.1.4 +PackageLocale: en-US +Publisher: Axosoft, LLC DBA GitKraken +PublisherUrl: https://www.gitkraken.com/ +PublisherSupportUrl: https://gitkraken.github.io/gk-cli/docs/gk.html +PrivacyUrl: https://www.gitkraken.com/privacy +Author: Axosoft, LLC DBA GitKraken +PackageName: GitKraken CLI +PackageUrl: https://github.com/gitkraken/gk-cli +License: CC-BY-3.0-US +LicenseUrl: https://github.com/gitkraken/gk-cli/blob/HEAD/LICENSE +Copyright: Copyright (c) Axosoft, LLC dba GitKraken +CopyrightUrl: https://github.com/cli/cli/blob/trunk/LICENSE +ShortDescription: GitKraken official command-line tool. +Description: |- + gk is GitKraken on the command line. + It makes working across multiple repos easier with Workspaces, provides access to pull requests and issues from multiple services (GitHub, GitLab, Bitbucket, etc.), and seamlessly connects with GitKraken Client and GitLens in VS Code to visualize git information when you need it. +Moniker: GitKraken CLI +Tags: + - cli + - command-line + - efficiency + - git-tool + - productivity + - repository-management + - tool + - utility + - version-control +ReleaseNotes: "## Changelog\n### \U0001F680 Features\n* feat: add login token (#288)\n" +ReleaseNotesUrl: https://github.com/gitkraken/gk-cli/releases/tag/v3.1.4 +InstallationNotes: https://github.com/gitkraken/gk-cli/blob/main/README.md +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GitKraken/cli/3.1.4/GitKraken.cli.yaml b/manifests/g/GitKraken/cli/3.1.4/GitKraken.cli.yaml new file mode 100644 index 0000000000000..313473645d13a --- /dev/null +++ b/manifests/g/GitKraken/cli/3.1.4/GitKraken.cli.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json +PackageIdentifier: GitKraken.cli +PackageVersion: 3.1.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/GoLang/Go/1.24.5/GoLang.Go.installer.yaml b/manifests/g/GoLang/Go/1.24.5/GoLang.Go.installer.yaml new file mode 100644 index 0000000000000..08a7c96974b64 --- /dev/null +++ b/manifests/g/GoLang/Go/1.24.5/GoLang.Go.installer.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: GoLang.Go +PackageVersion: 1.24.5 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLDIR="" +UpgradeBehavior: install +Commands: +- go +- gofmt +FileExtensions: +- go +Installers: +- Architecture: x86 + InstallerUrl: https://go.dev/dl/go1.24.5.windows-386.msi + InstallerSha256: EEF0329BB25770CE2392C56A70E6074BAFF3C2EC38BB2619A6A199048617563A + ProductCode: '{8D913C78-167D-434B-8DD5-7671CA279CEC}' + AppsAndFeaturesEntries: + - DisplayName: Go Programming Language 386 go1.24.5 + ProductCode: '{8D913C78-167D-434B-8DD5-7671CA279CEC}' + UpgradeCode: '{1C3114EA-08C3-11E1-9095-7FCA4824019B}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\Go' +- Architecture: x64 + InstallerUrl: https://go.dev/dl/go1.24.5.windows-amd64.msi + InstallerSha256: 3394AB0A830727764B6A576CD84E1FE7640919730B706D42E5948AF35B46CFC8 + ProductCode: '{06570D64-D34D-4A7E-8510-092E8286DE14}' + AppsAndFeaturesEntries: + - DisplayName: Go Programming Language amd64 go1.24.5 + ProductCode: '{06570D64-D34D-4A7E-8510-092E8286DE14}' + UpgradeCode: '{22EA7650-4AC6-4001-BF29-F4B8775DB1C0}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Go' +- Architecture: arm64 + InstallerUrl: https://go.dev/dl/go1.24.5.windows-arm64.msi + InstallerSha256: F236821B94B4DB3FEBC7AB36AC9FC477C14D449FA53EC6DEBB7DBD3C10F9128A + ProductCode: '{8EDAEA50-7E78-474F-8E3F-43BCA93DFA72}' + AppsAndFeaturesEntries: + - DisplayName: Go Programming Language arm64 go1.24.5 + ProductCode: '{8EDAEA50-7E78-474F-8E3F-43BCA93DFA72}' + UpgradeCode: '{21ADE9A3-3FDD-4BA6-BEA6-C85ABADC9488}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Go' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/GoLang/Go/1.24.5/GoLang.Go.locale.en-US.yaml b/manifests/g/GoLang/Go/1.24.5/GoLang.Go.locale.en-US.yaml new file mode 100644 index 0000000000000..138a6d3a5478c --- /dev/null +++ b/manifests/g/GoLang/Go/1.24.5/GoLang.Go.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: GoLang.Go +PackageVersion: 1.24.5 +PackageLocale: en-US +Publisher: https://go.dev +PublisherUrl: https://go.dev/ +PublisherSupportUrl: https://go.dev/help +PrivacyUrl: https://policies.google.com/privacy +PackageName: Go Programming Language +PackageUrl: https://go.dev/dl/ +License: BSD-3-Clause +LicenseUrl: https://github.com/golang/go/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 The Go Authors. All rights reserved. +CopyrightUrl: https://go.dev/copyright +ShortDescription: An open source programming language that makes it simple to build secure, scalable systems. +Description: |- + The Go programming language is an open source project to make programmers more productive. + Go is expressive, concise, clean, and efficient. Its concurrency mechanisms make it easy to write programs that get the most out of multicore and networked machines, while its novel type system enables flexible and modular program construction. Go compiles quickly to machine code yet has the convenience of garbage collection and the power of run-time reflection. It's a fast, statically typed, compiled language that feels like a dynamically typed, interpreted language. +Moniker: go +Tags: +- go +- golang +- language +- programming +- programming-language +ReleaseNotesUrl: https://go.dev/doc/devel/release#go1.24.5 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://go.dev/doc/ +- DocumentLabel: Learn + DocumentUrl: https://go.dev/learn/ +- DocumentLabel: Wiki + DocumentUrl: https://go.dev/wiki/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GoLang/Go/1.24.5/GoLang.Go.locale.zh-CN.yaml b/manifests/g/GoLang/Go/1.24.5/GoLang.Go.locale.zh-CN.yaml new file mode 100644 index 0000000000000..db64a62b078a7 --- /dev/null +++ b/manifests/g/GoLang/Go/1.24.5/GoLang.Go.locale.zh-CN.yaml @@ -0,0 +1,30 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: GoLang.Go +PackageVersion: 1.24.5 +PackageLocale: zh-CN +Publisher: https://go.dev +PrivacyUrl: https://policies.google.com/privacy?hl=zh-CN +PackageName: Go Programming Language +ShortDescription: 可轻松构建安全、可扩展的系统的开源编程语言。 +Description: |- + Go 编程语言是一个开源项目,旨在提高程序员的工作效率。 + Go 是一个易读、简洁、干净、高效的编程语言,其并发机制有助于写出可以更充分地利用多核和网络计算机的程序,而其新颖的类型系统则带来了灵活的模块化程序构建。Go 可以快速编译成机器代码,同时还具备垃圾回收的便利性和运行时反射的强大功能。它是一种快速、静态类型的编译语言,但写起来就像一种动态类型的解释型语言。 +Tags: +- go +- golang +- 编程 +- 编程语言 +- 脚本 +- 语言 +ReleaseNotesUrl: https://go.dev/doc/devel/release#go1.24.5 +Documentations: +- DocumentLabel: 学习 + DocumentUrl: https://go.dev/learn/ +- DocumentLabel: 文档 + DocumentUrl: https://go.dev/doc/ +- DocumentLabel: 维基 + DocumentUrl: https://go.dev/wiki/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GoLang/Go/1.24.5/GoLang.Go.yaml b/manifests/g/GoLang/Go/1.24.5/GoLang.Go.yaml new file mode 100644 index 0000000000000..edfa3faf0d9f7 --- /dev/null +++ b/manifests/g/GoLang/Go/1.24.5/GoLang.Go.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: GoLang.Go +PackageVersion: 1.24.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/AndroidStudio/Canary/2025.1.1.7/Google.AndroidStudio.Canary.installer.yaml b/manifests/g/Google/AndroidStudio/Canary/2025.1.1.7/Google.AndroidStudio.Canary.installer.yaml index 1f84f59955682..ed7e2c24ced13 100644 --- a/manifests/g/Google/AndroidStudio/Canary/2025.1.1.7/Google.AndroidStudio.Canary.installer.yaml +++ b/manifests/g/Google/AndroidStudio/Canary/2025.1.1.7/Google.AndroidStudio.Canary.installer.yaml @@ -13,9 +13,6 @@ InstallerSuccessCodes: - 1223 UpgradeBehavior: install ReleaseDate: 2025-04-17 -AppsAndFeaturesEntries: -- DisplayName: Android Studio - DisplayVersion: '2025.1' ElevationRequirement: elevatesSelf Installers: - Architecture: x64 diff --git a/manifests/g/Google/Chrome/138.0.7204.101/Google.Chrome.installer.yaml b/manifests/g/Google/Chrome/138.0.7204.101/Google.Chrome.installer.yaml new file mode 100644 index 0000000000000..bffe147b52ea1 --- /dev/null +++ b/manifests/g/Google/Chrome/138.0.7204.101/Google.Chrome.installer.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Google.Chrome +PackageVersion: 138.0.7204.101 +InstallerType: wix +Scope: machine +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +- mms +- tel +- webcal +FileExtensions: +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + InstallerUrl: https://dl.google.com/dl/chrome/install/googlechromestandaloneenterprise64.msi + InstallerSha256: A278DE734B2E1573D2220F9B7A01610532FB89C364FA78294A0B3BDB1D8F0320 + ProductCode: '{5255A8A8-8890-3004-8533-2A831790FB70}' + AppsAndFeaturesEntries: + - ProductCode: '{5255A8A8-8890-3004-8533-2A831790FB70}' + UpgradeCode: '{C1DFDF69-5945-32F2-A35E-EE94C99C7CF4}' +- Architecture: arm64 + InstallerUrl: https://dl.google.com/dl/chrome/install/googlechromestandaloneenterprise_arm64.msi + InstallerSha256: 6F70F848DF5AB5583669E76C6A31B0F03D458F8490B0C2CF66642C9FCB46DA16 + ProductCode: '{9B599EC3-9668-34A2-992E-2003AD582359}' + AppsAndFeaturesEntries: + - ProductCode: '{9B599EC3-9668-34A2-992E-2003AD582359}' + UpgradeCode: '{C1DFDF69-5945-32F2-A35E-EE94C99C7CF4}' +- Architecture: x86 + InstallerUrl: https://dl.google.com/dl/chrome/install/googlechromestandaloneenterprise.msi + InstallerSha256: 39A290A7EFF6C099CE7257CBF84519800F3A27C54141F8E1E9ADA44C0E2D3553 + ProductCode: '{3CAC1DC6-F4D2-3245-A03C-29D866C4A29F}' + AppsAndFeaturesEntries: + - ProductCode: '{3CAC1DC6-F4D2-3245-A03C-29D866C4A29F}' + UpgradeCode: '{C1DFDF69-5945-32F2-A35E-EE94C99C7CF4}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/138.0.7204.101/Google.Chrome.locale.en-US.yaml b/manifests/g/Google/Chrome/138.0.7204.101/Google.Chrome.locale.en-US.yaml new file mode 100644 index 0000000000000..d080cfa619686 --- /dev/null +++ b/manifests/g/Google/Chrome/138.0.7204.101/Google.Chrome.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome +PackageVersion: 138.0.7204.101 +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 +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 Fast & Secure Web Browser Built to be Yours +Description: Chrome is the official web browser from Google, built to be fast, secure, and customizable. +Moniker: chrome +Tags: +- browser +- chromium +- fast +- internet +- safe +- search +- web +- webpage +Documentations: +- DocumentLabel: Chrome Web Store + DocumentUrl: https://chromewebstore.google.com/ +- DocumentLabel: Chrome for Developers + DocumentUrl: https://developer.chrome.com/ +- DocumentLabel: Chrome Platform Status + DocumentUrl: https://chromestatus.com/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/138.0.7204.101/Google.Chrome.locale.nb-NO.yaml b/manifests/g/Google/Chrome/138.0.7204.101/Google.Chrome.locale.nb-NO.yaml new file mode 100644 index 0000000000000..977122bf2f74a --- /dev/null +++ b/manifests/g/Google/Chrome/138.0.7204.101/Google.Chrome.locale.nb-NO.yaml @@ -0,0 +1,35 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome +PackageVersion: 138.0.7204.101 +PackageLocale: nb-NO +Publisher: Google LLC +PublisherUrl: https://www.google.com/ +PublisherSupportUrl: https://support.google.com/?hl=nb-no +PrivacyUrl: https://policies.google.com/privacy?hl=nb-no +Author: Google LLC +PackageName: Google Chrome +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: Den raske og sikre nettleseren som er laget for å være din egen +Description: Chrome er Googles offisielle nettleser. Den er laget for å være rask, sikker og tilpassbar. +Tags: +- chromium +- internett +- nettet +- nettleser +- rask +- søk +- trygg +Documentations: +- DocumentLabel: Chrome Nettmarked + DocumentUrl: https://chromewebstore.google.com/?hl=nb-no +- DocumentLabel: Chrome for Developers + DocumentUrl: https://developer.chrome.com/ +- DocumentLabel: Chrome Platform Status + DocumentUrl: https://chromestatus.com/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/138.0.7204.101/Google.Chrome.locale.zh-CN.yaml b/manifests/g/Google/Chrome/138.0.7204.101/Google.Chrome.locale.zh-CN.yaml new file mode 100644 index 0000000000000..2184f5c5df2b4 --- /dev/null +++ b/manifests/g/Google/Chrome/138.0.7204.101/Google.Chrome.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.10.0.schema.json + +PackageIdentifier: Google.Chrome +PackageVersion: 138.0.7204.101 +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 +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: 快速安全的网络浏览器,专为您而打造 +Description: Chrome 是 Google 的官方网络浏览器,速度飞快,安全可靠,并且支持自定义。 +Tags: +- chromium +- 互联网 +- 安全 +- 快捷 +- 搜索 +- 浏览器 +- 网页 +Documentations: +- DocumentLabel: Chrome 应用商店 + DocumentUrl: https://chromewebstore.google.com/?hl=zh-cn +- DocumentLabel: Chrome for Developers + DocumentUrl: https://developer.chrome.com/?hl=zh-cn +- DocumentLabel: Chrome Platform Status + DocumentUrl: https://chromestatus.com/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/138.0.7204.101/Google.Chrome.yaml b/manifests/g/Google/Chrome/138.0.7204.101/Google.Chrome.yaml new file mode 100644 index 0000000000000..bb78bcdf46482 --- /dev/null +++ b/manifests/g/Google/Chrome/138.0.7204.101/Google.Chrome.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Google.Chrome +PackageVersion: 138.0.7204.101 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/EXE/138.0.7204.101/Google.Chrome.EXE.installer.yaml b/manifests/g/Google/Chrome/EXE/138.0.7204.101/Google.Chrome.EXE.installer.yaml new file mode 100644 index 0000000000000..4f65d23b8fc28 --- /dev/null +++ b/manifests/g/Google/Chrome/EXE/138.0.7204.101/Google.Chrome.EXE.installer.yaml @@ -0,0 +1,74 @@ +# 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.101 +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/ecwwfkzewp3q4cwmmrrytrchba_138.0.7204.101/138.0.7204.101_chrome_installer_uncompressed.exe + InstallerSha256: B4FD27690E95B51EAA2EC92FFF8C05F87E2F251B4152E4A2D9F98D054BB7A0BF + InstallerSwitches: + Custom: --do-not-launch-chrome +- Architecture: x86 + Scope: machine + InstallerUrl: https://dl.google.com/release2/chrome/ecwwfkzewp3q4cwmmrrytrchba_138.0.7204.101/138.0.7204.101_chrome_installer_uncompressed.exe + InstallerSha256: B4FD27690E95B51EAA2EC92FFF8C05F87E2F251B4152E4A2D9F98D054BB7A0BF + InstallerSwitches: + Custom: --do-not-launch-chrome --system-level +- Architecture: x64 + Scope: user + InstallerUrl: https://dl.google.com/release2/chrome/aclczb5bjdhbdipy7respylybp4a_138.0.7204.101/138.0.7204.101_chrome_installer_uncompressed.exe + InstallerSha256: D02E25D8901C73C23326982A0E35CEA6F8D87DC1049D33DD47F88B410380CC1B + InstallerSwitches: + Custom: --do-not-launch-chrome +- Architecture: x64 + Scope: machine + InstallerUrl: https://dl.google.com/release2/chrome/aclczb5bjdhbdipy7respylybp4a_138.0.7204.101/138.0.7204.101_chrome_installer_uncompressed.exe + InstallerSha256: D02E25D8901C73C23326982A0E35CEA6F8D87DC1049D33DD47F88B410380CC1B + InstallerSwitches: + Custom: --do-not-launch-chrome --system-level +- Architecture: arm64 + Scope: user + InstallerUrl: https://dl.google.com/release2/chrome/e6xpn5reokbbawkfqsvcr3heba_138.0.7204.101/138.0.7204.101_chrome_installer_uncompressed.exe + InstallerSha256: 57DB767287F9D65B49C75D3A72F36852766CE720E71DDB30EEB7CC57D5BF0367 + InstallerSwitches: + Custom: --do-not-launch-chrome +- Architecture: arm64 + Scope: machine + InstallerUrl: https://dl.google.com/release2/chrome/e6xpn5reokbbawkfqsvcr3heba_138.0.7204.101/138.0.7204.101_chrome_installer_uncompressed.exe + InstallerSha256: 57DB767287F9D65B49C75D3A72F36852766CE720E71DDB30EEB7CC57D5BF0367 + 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.101/Google.Chrome.EXE.locale.en-US.yaml b/manifests/g/Google/Chrome/EXE/138.0.7204.101/Google.Chrome.EXE.locale.en-US.yaml new file mode 100644 index 0000000000000..1530cd0e9b1c2 --- /dev/null +++ b/manifests/g/Google/Chrome/EXE/138.0.7204.101/Google.Chrome.EXE.locale.en-US.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.EXE +PackageVersion: 138.0.7204.101 +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.101/Google.Chrome.EXE.locale.nb-NO.yaml b/manifests/g/Google/Chrome/EXE/138.0.7204.101/Google.Chrome.EXE.locale.nb-NO.yaml new file mode 100644 index 0000000000000..f7d84d46bef77 --- /dev/null +++ b/manifests/g/Google/Chrome/EXE/138.0.7204.101/Google.Chrome.EXE.locale.nb-NO.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.EXE +PackageVersion: 138.0.7204.101 +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.101/Google.Chrome.EXE.locale.zh-CN.yaml b/manifests/g/Google/Chrome/EXE/138.0.7204.101/Google.Chrome.EXE.locale.zh-CN.yaml new file mode 100644 index 0000000000000..17edf2cc29b2f --- /dev/null +++ b/manifests/g/Google/Chrome/EXE/138.0.7204.101/Google.Chrome.EXE.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.EXE +PackageVersion: 138.0.7204.101 +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/138.0.7204.101/Google.Chrome.EXE.yaml b/manifests/g/Google/Chrome/EXE/138.0.7204.101/Google.Chrome.EXE.yaml new file mode 100644 index 0000000000000..8d565109630ef --- /dev/null +++ b/manifests/g/Google/Chrome/EXE/138.0.7204.101/Google.Chrome.EXE.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.EXE +PackageVersion: 138.0.7204.101 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Grain/Grain/0.7.1/Grain.Grain.installer.yaml b/manifests/g/Grain/Grain/0.7.1/Grain.Grain.installer.yaml new file mode 100644 index 0000000000000..32e73c0b16d80 --- /dev/null +++ b/manifests/g/Grain/Grain/0.7.1/Grain.Grain.installer.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Grain.Grain +PackageVersion: 0.7.1 +InstallerType: portable +Commands: +- grain +ReleaseDate: 2025-07-01 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/grain-lang/grain/releases/download/grain-v0.7.1/grain-win-x64.exe + InstallerSha256: 2BEB88F4FB2E0585BDDF8E739E8577392D3794482E3F731EF08908DDCB045F23 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Grain/Grain/0.7.1/Grain.Grain.locale.en-US.yaml b/manifests/g/Grain/Grain/0.7.1/Grain.Grain.locale.en-US.yaml new file mode 100644 index 0000000000000..067680fe4667f --- /dev/null +++ b/manifests/g/Grain/Grain/0.7.1/Grain.Grain.locale.en-US.yaml @@ -0,0 +1,59 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Grain.Grain +PackageVersion: 0.7.1 +PackageLocale: en-US +Publisher: Grain +PublisherUrl: https://grain-lang.org/ +PublisherSupportUrl: https://github.com/grain-lang/grain/issues +PackageName: Grain +PackageUrl: https://grain-lang.org/ +License: LGPL-3.0 +LicenseUrl: https://github.com/grain-lang/grain/blob/HEAD/LICENSE +Copyright: Copyright ©️ 2017-2024 Philip Blair, Oscar Spencer, & contributors. +ShortDescription: A new language that puts academic language features to work. +Tags: +- language +- programming +- programming-language +ReleaseNotes: |- + Features + - graindoc: Add locations to Graindoc errors (#2291) (da6090a) + - graindoc: Pretty markdown tables (#2292) (1992734) + - grainlsp: Add inlay types (#2005) (f8a8f7f) + - lsp: Implement document symbol outline (#2298) (e4caac2) + - stdlib: Add Buffer.getChar (#2262) (95d03cb) + - stdlib: Deprecate Buffer.set operations in favour of Bytes.set (#2303) (684df98) + - stdlib: Expose equality operators through Number module (#2296) (5965dff) + Bug Fixes + - compiler: Correct type printing of type A = a (#2302) (ac892d1) + - grainfmt: Correct formatting of submodules ending with comments (#2288) (f969df9) + cli: 0.7.1 + 0.7.1 (2025-07-01) + Miscellaneous Chores + - cli: Synchronize Grain versions + compiler: 0.7.1 + 0.7.1 (2025-07-01) + Features + - graindoc: Add locations to Graindoc errors (#2291) (da6090a) + - graindoc: Pretty markdown tables (#2292) (1992734) + - grainlsp: Add inlay types (#2005) (f8a8f7f) + - lsp: Implement document symbol outline (#2298) (e4caac2) + - stdlib: Add Buffer.getChar (#2262) (95d03cb) + Bug Fixes + - compiler: Correct type printing of type A = a (#2302) (ac892d1) + - grainfmt: Correct formatting of submodules ending with comments (#2288) (f969df9) + stdlib: 0.7.1 + 0.7.1 (2025-07-01) + Features + - graindoc: Pretty markdown tables (#2292) (1992734) + - stdlib: Add Buffer.getChar (#2262) (95d03cb) + - stdlib: Deprecate Buffer.set operations in favour of Bytes.set (#2303) (684df98) + - stdlib: Expose equality operators through Number module (#2296) (5965dff) +ReleaseNotesUrl: https://github.com/grain-lang/grain/releases/tag/grain-v0.7.1 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://grain-lang.org/docs +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Grain/Grain/0.7.1/Grain.Grain.locale.zh-CN.yaml b/manifests/g/Grain/Grain/0.7.1/Grain.Grain.locale.zh-CN.yaml new file mode 100644 index 0000000000000..99281681d1291 --- /dev/null +++ b/manifests/g/Grain/Grain/0.7.1/Grain.Grain.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.10.0.schema.json + +PackageIdentifier: Grain.Grain +PackageVersion: 0.7.1 +PackageLocale: zh-CN +ShortDescription: 让学术语言特性发挥作用的新语言。 +Tags: +- 编程 +- 编程语言 +- 语言 +ReleaseNotesUrl: https://github.com/grain-lang/grain/releases/tag/grain-v0.7.1 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://grain-lang.org/docs +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Grain/Grain/0.7.1/Grain.Grain.yaml b/manifests/g/Grain/Grain/0.7.1/Grain.Grain.yaml new file mode 100644 index 0000000000000..979e59f4890c2 --- /dev/null +++ b/manifests/g/Grain/Grain/0.7.1/Grain.Grain.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Grain.Grain +PackageVersion: 0.7.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Grammarly/Grammarly/1.2.174.1704/Grammarly.Grammarly.installer.yaml b/manifests/g/Grammarly/Grammarly/1.2.174.1704/Grammarly.Grammarly.installer.yaml new file mode 100644 index 0000000000000..171f544f71727 --- /dev/null +++ b/manifests/g/Grammarly/Grammarly/1.2.174.1704/Grammarly.Grammarly.installer.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Grammarly.Grammarly +PackageVersion: 1.2.174.1704 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: /update +UpgradeBehavior: install +ProductCode: Grammarly Desktop Integrations +ReleaseDate: 2025-07-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-windows.grammarly.com/versions/1.2.174.1704/GrammarlyInstaller.exe + InstallerSha256: 56BC619CC1BD13A1027B828DAF4C7DBF92201C29D77C85D0BBADD8553415F5B9 +- Architecture: x64 + InstallerUrl: https://download-windows.grammarly.com/versions/1.2.174.1704/GrammarlyInstaller.exe + InstallerSha256: 56BC619CC1BD13A1027B828DAF4C7DBF92201C29D77C85D0BBADD8553415F5B9 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Grammarly/Grammarly/1.2.174.1704/Grammarly.Grammarly.locale.en-US.yaml b/manifests/g/Grammarly/Grammarly/1.2.174.1704/Grammarly.Grammarly.locale.en-US.yaml new file mode 100644 index 0000000000000..c986cd343f8ce --- /dev/null +++ b/manifests/g/Grammarly/Grammarly/1.2.174.1704/Grammarly.Grammarly.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Grammarly.Grammarly +PackageVersion: 1.2.174.1704 +PackageLocale: en-US +Publisher: Grammarly +PublisherUrl: https://www.grammarly.com/ +PublisherSupportUrl: https://support.grammarly.com/ +PrivacyUrl: https://www.grammarly.com/privacy-policy +Author: Grammarly Inc. +PackageName: Grammarly for Windows +PackageUrl: https://www.grammarly.com/desktop/windows +License: Proprietary +LicenseUrl: https://www.grammarly.com/terms +Copyright: Copyright © 2009-2024 Grammarly Inc. +ShortDescription: Compose bold, clear, mistake-free writing with Grammarly’s new AI-powered desktop Windows app. +Tags: +- english +- grammar +- writing +PurchaseUrl: https://www.grammarly.com/plans +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Grammarly/Grammarly/1.2.174.1704/Grammarly.Grammarly.locale.zh-CN.yaml b/manifests/g/Grammarly/Grammarly/1.2.174.1704/Grammarly.Grammarly.locale.zh-CN.yaml new file mode 100644 index 0000000000000..492f718cb604d --- /dev/null +++ b/manifests/g/Grammarly/Grammarly/1.2.174.1704/Grammarly.Grammarly.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Grammarly.Grammarly +PackageVersion: 1.2.174.1704 +PackageLocale: zh-CN +Publisher: Grammarly +PublisherUrl: https://www.grammarly.com/ +PublisherSupportUrl: https://support.grammarly.com/ +PrivacyUrl: https://www.grammarly.com/privacy-policy +Author: Grammarly Inc. +PackageName: Grammarly for Windows +PackageUrl: https://www.grammarly.com/desktop/windows +License: 专有软件 +LicenseUrl: https://www.grammarly.com/terms +Copyright: Copyright © 2009-2024 Grammarly Inc. +ShortDescription: 使用 Grammarly 的 AI 驱动的新 Windows 桌面应用,撰写大胆、清晰、无错误的文章。 +Tags: +- 写作 +- 英语 +- 语法 +PurchaseUrl: https://www.grammarly.com/plans +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Grammarly/Grammarly/1.2.174.1704/Grammarly.Grammarly.yaml b/manifests/g/Grammarly/Grammarly/1.2.174.1704/Grammarly.Grammarly.yaml new file mode 100644 index 0000000000000..171276e5cfa49 --- /dev/null +++ b/manifests/g/Grammarly/Grammarly/1.2.174.1704/Grammarly.Grammarly.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Grammarly.Grammarly +PackageVersion: 1.2.174.1704 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/go-musicfox/go-musicfox/4.6.3/go-musicfox.go-musicfox.installer.yaml b/manifests/g/go-musicfox/go-musicfox/4.6.3/go-musicfox.go-musicfox.installer.yaml new file mode 100644 index 0000000000000..51c6ee89c83ea --- /dev/null +++ b/manifests/g/go-musicfox/go-musicfox/4.6.3/go-musicfox.go-musicfox.installer.yaml @@ -0,0 +1,26 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json +PackageIdentifier: go-musicfox.go-musicfox +PackageVersion: 4.6.3 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-07-06" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: go-musicfox_4.6.3_windows_arm64\musicfox.exe + PortableCommandAlias: musicfox + InstallerUrl: https://github.com/go-musicfox/go-musicfox/releases/download/v4.6.3/go-musicfox_4.6.3_windows_arm64.zip + InstallerSha256: ac71d27144299d39f09ae7b86eff55a3b8605001ced9a269451cca38a09f3fc7 + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: go-musicfox_4.6.3_windows_amd64\musicfox.exe + PortableCommandAlias: musicfox + InstallerUrl: https://github.com/go-musicfox/go-musicfox/releases/download/v4.6.3/go-musicfox_4.6.3_windows_amd64.zip + InstallerSha256: f6538f36d0b257856334a65be7bb9fbf99664e9f22309f5174c8fa74c94d3b56 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/go-musicfox/go-musicfox/4.6.3/go-musicfox.go-musicfox.locale.en-US.yaml b/manifests/g/go-musicfox/go-musicfox/4.6.3/go-musicfox.go-musicfox.locale.en-US.yaml new file mode 100644 index 0000000000000..bb82f8a97a95f --- /dev/null +++ b/manifests/g/go-musicfox/go-musicfox/4.6.3/go-musicfox.go-musicfox.locale.en-US.yaml @@ -0,0 +1,26 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +PackageIdentifier: go-musicfox.go-musicfox +PackageVersion: 4.6.3 +PackageLocale: en-US +Publisher: go-musicfox +PublisherUrl: https://github.com/go-musicfox/go-musicfox +PublisherSupportUrl: https://github.com/go-musicfox/go-musicfox/issues/new +PackageName: go-musicfox +PackageUrl: https://github.com/go-musicfox/go-musicfox +License: MIT +ShortDescription: A netease music player in terminal. +Description: A netease music player in terminal. +Moniker: go-musicfox +Tags: + - golang + - cli + - netease-music + - musicfox +ReleaseNotes: | + ## Changelog + ### Others + * dd4f2c1ae76ca24787df50668654d01bdc5d0c9c chore: upgrade goreleaser-cross + * d8ec40846edacf33af0d70f70817f6f99deb8fe9 chore: update scoop config & changelog +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/go-musicfox/go-musicfox/4.6.3/go-musicfox.go-musicfox.yaml b/manifests/g/go-musicfox/go-musicfox/4.6.3/go-musicfox.go-musicfox.yaml new file mode 100644 index 0000000000000..8da6db7aec46c --- /dev/null +++ b/manifests/g/go-musicfox/go-musicfox/4.6.3/go-musicfox.go-musicfox.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json +PackageIdentifier: go-musicfox.go-musicfox +PackageVersion: 4.6.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/h/HDDGURU/HDDLLFTool/4.40/HDDGURU.HDDLLFTool.installer.yaml b/manifests/h/HDDGURU/HDDLLFTool/4.40/HDDGURU.HDDLLFTool.installer.yaml deleted file mode 100644 index dacfaaaa6c0cc..0000000000000 --- a/manifests/h/HDDGURU/HDDLLFTool/4.40/HDDGURU.HDDLLFTool.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 v2.1.2 $debug=QUSU.7-2-5 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.1.0.schema.json - -PackageIdentifier: HDDGURU.HDDLLFTool -PackageVersion: "4.40" -MinimumOSVersion: 10.0.0.0 -InstallerType: inno -Scope: machine -UpgradeBehavior: install -Installers: -- Architecture: x86 - InstallerUrl: https://hddguru.com/software/HDD-LLF-Low-Level-Format-Tool/HDDLLFsetup.4.40.exe - InstallerSha256: 09AA2B3A6E5EE49FBF9A84A222FB23440CE601435D602DD1F79B2C3727CAFD67 - ProductCode: Hard Disk Low Level Format Tool_is1 -ManifestType: installer -ManifestVersion: 1.1.0 diff --git a/manifests/h/HDDGURU/HDDLLFTool/4.40/HDDGURU.HDDLLFTool.yaml b/manifests/h/HDDGURU/HDDLLFTool/4.40/HDDGURU.HDDLLFTool.yaml deleted file mode 100644 index 55408e1de07c4..0000000000000 --- a/manifests/h/HDDGURU/HDDLLFTool/4.40/HDDGURU.HDDLLFTool.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.1.2 $debug=QUSU.7-2-5 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.1.0.schema.json - -PackageIdentifier: HDDGURU.HDDLLFTool -PackageVersion: "4.40" -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.1.0 diff --git a/manifests/h/HDDGURU/HDDLLFTool/4.50/HDDGURU.HDDLLFTool.installer.yaml b/manifests/h/HDDGURU/HDDLLFTool/4.50/HDDGURU.HDDLLFTool.installer.yaml new file mode 100644 index 0000000000000..862349ba2b2f6 --- /dev/null +++ b/manifests/h/HDDGURU/HDDLLFTool/4.50/HDDGURU.HDDLLFTool.installer.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: HDDGURU.HDDLLFTool +PackageVersion: '4.50' +InstallerLocale: en-US +InstallerType: inno +Scope: machine +UpgradeBehavior: install +ProductCode: Hard Disk Low Level Format Tool_is1 +ReleaseDate: 2024-12-17 +AppsAndFeaturesEntries: +- ProductCode: Hard Disk Low Level Format Tool_is1 +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\HDDGURU LLF Tool' +Installers: +- Architecture: x86 + InstallerUrl: https://hddguru.com/software/HDD-LLF-Low-Level-Format-Tool/HDDLLFsetup.4.50.exe + InstallerSha256: 9D1B0D220BCE5150069D6878C6889A8288E0BF26F29329D90BA2064B33707066 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/HDDGURU/HDDLLFTool/4.40/HDDGURU.HDDLLFTool.locale.en-US.yaml b/manifests/h/HDDGURU/HDDLLFTool/4.50/HDDGURU.HDDLLFTool.locale.en-US.yaml similarity index 71% rename from manifests/h/HDDGURU/HDDLLFTool/4.40/HDDGURU.HDDLLFTool.locale.en-US.yaml rename to manifests/h/HDDGURU/HDDLLFTool/4.50/HDDGURU.HDDLLFTool.locale.en-US.yaml index 0fcde43b1cf31..1113600c61f72 100644 --- a/manifests/h/HDDGURU/HDDLLFTool/4.40/HDDGURU.HDDLLFTool.locale.en-US.yaml +++ b/manifests/h/HDDGURU/HDDLLFTool/4.50/HDDGURU.HDDLLFTool.locale.en-US.yaml @@ -1,31 +1,26 @@ -# Created with YamlCreate.ps1 v2.1.2 $debug=QUSU.7-2-5 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.1.0.schema.json +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: HDDGURU.HDDLLFTool -PackageVersion: "4.40" +PackageVersion: '4.50' PackageLocale: en-US Publisher: HDDGURU -PublisherUrl: https://hddguru.com/ -PublisherSupportUrl: https://forum.hddguru.com/ -PrivacyUrl: https://hddguru.com/privacy/ +# PublisherUrl: https://hddguru.com/ +# PublisherSupportUrl: https://forum.hddguru.com/ +# PrivacyUrl: https://hddguru.com/privacy/ Author: HDDGURU PackageName: Hard Disk Low Level Format Tool PackageUrl: https://hddguru.com/software/HDD-LLF-Low-Level-Format-Tool/ License: Freeware LicenseUrl: https://hddguru.com/software/HDD-LLF-Low-Level-Format-Tool/EULA.txt Copyright: Copyright © 2005–2013 HDDGURU -# CopyrightUrl: ShortDescription: A utility for low-level hard disk drive formatting Description: This freeware HDD Low Level Format utility can erase, Low-Level Format and re-certify a SATA, IDE, SAS, SCSI, SSD hard disk drive. Will also work with any USB and FIREWIRE external drive enclosures as well as SD, MMC, MemoryStick and CompactFlash media. -# Moniker: Tags: - erase - format - hdd - llf - low-level-format -# Agreements: -# ReleaseNotes: -# ReleaseNotesUrl: ManifestType: defaultLocale -ManifestVersion: 1.1.0 +ManifestVersion: 1.10.0 diff --git a/manifests/h/HDDGURU/HDDLLFTool/4.40/HDDGURU.HDDLLFTool.locale.zh-CN.yaml b/manifests/h/HDDGURU/HDDLLFTool/4.50/HDDGURU.HDDLLFTool.locale.zh-CN.yaml similarity index 69% rename from manifests/h/HDDGURU/HDDLLFTool/4.40/HDDGURU.HDDLLFTool.locale.zh-CN.yaml rename to manifests/h/HDDGURU/HDDLLFTool/4.50/HDDGURU.HDDLLFTool.locale.zh-CN.yaml index 252c187c8fd0a..e63fd56806d50 100644 --- a/manifests/h/HDDGURU/HDDLLFTool/4.40/HDDGURU.HDDLLFTool.locale.zh-CN.yaml +++ b/manifests/h/HDDGURU/HDDLLFTool/4.50/HDDGURU.HDDLLFTool.locale.zh-CN.yaml @@ -1,31 +1,26 @@ -# Created with YamlCreate.ps1 v2.1.2 $debug=QUSU.7-2-5 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.1.0.schema.json +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: HDDGURU.HDDLLFTool -PackageVersion: "4.40" +PackageVersion: '4.50' PackageLocale: zh-CN Publisher: HDDGURU -PublisherUrl: https://hddguru.com/ -PublisherSupportUrl: https://forum.hddguru.com/ -PrivacyUrl: https://hddguru.com/privacy/ +# PublisherUrl: https://hddguru.com/ +# PublisherSupportUrl: https://forum.hddguru.com/ +# PrivacyUrl: https://hddguru.com/privacy/ Author: HDDGURU PackageName: Hard Disk Low Level Format Tool PackageUrl: https://hddguru.com/software/HDD-LLF-Low-Level-Format-Tool/ License: 免费软件 LicenseUrl: https://hddguru.com/software/HDD-LLF-Low-Level-Format-Tool/EULA.txt Copyright: Copyright © 2005–2013 HDDGURU -# CopyrightUrl: ShortDescription: 硬盘低级格式化工具 Description: 免费的硬盘低级格式化工具,可以擦除、低级格式化并返修 SATA、IDE、SAS、SCSI、SSD 硬盘,任何 USB 和火线硬盘盒,以及 SD、MMC、记忆棒和 CompactFlash 介质。 -# Moniker: Tags: - 低格 - 低级格式化 - 擦除 - 格式化 - 硬盘 -# Agreements: -# ReleaseNotes: -# ReleaseNotesUrl: ManifestType: locale -ManifestVersion: 1.1.0 +ManifestVersion: 1.10.0 diff --git a/manifests/h/HDDGURU/HDDLLFTool/4.50/HDDGURU.HDDLLFTool.yaml b/manifests/h/HDDGURU/HDDLLFTool/4.50/HDDGURU.HDDLLFTool.yaml new file mode 100644 index 0000000000000..eaf0a5f4b4ed3 --- /dev/null +++ b/manifests/h/HDDGURU/HDDLLFTool/4.50/HDDGURU.HDDLLFTool.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: HDDGURU.HDDLLFTool +PackageVersion: '4.50' +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.24.2/HiroshibaKazuyuki.VOICEVOX.CPU.installer.yaml b/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.24.2/HiroshibaKazuyuki.VOICEVOX.CPU.installer.yaml new file mode 100644 index 0000000000000..e670c3e6080cd --- /dev/null +++ b/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.24.2/HiroshibaKazuyuki.VOICEVOX.CPU.installer.yaml @@ -0,0 +1,17 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: HiroshibaKazuyuki.VOICEVOX.CPU +PackageVersion: 0.24.2 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: VOICEVOX/VOICEVOX.exe +UpgradeBehavior: install +ReleaseDate: 2025-07-08 +Installers: +- Architecture: neutral + InstallerUrl: https://github.com/VOICEVOX/voicevox/releases/download/0.24.2/voicevox-windows-cpu-0.24.2.zip + InstallerSha256: 3948C57680E6D5BFF4B41334E2260B91FD958834A8A23E78DCC586BA9EFE7761 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.24.2/HiroshibaKazuyuki.VOICEVOX.CPU.locale.en-US.yaml b/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.24.2/HiroshibaKazuyuki.VOICEVOX.CPU.locale.en-US.yaml new file mode 100644 index 0000000000000..9329855163837 --- /dev/null +++ b/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.24.2/HiroshibaKazuyuki.VOICEVOX.CPU.locale.en-US.yaml @@ -0,0 +1,41 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: HiroshibaKazuyuki.VOICEVOX.CPU +PackageVersion: 0.24.2 +PackageLocale: en-US +Publisher: Hiroshiba Kazuyuki +PublisherUrl: https://voicevox.hiroshiba.jp/ +PublisherSupportUrl: https://github.com/VOICEVOX/voicevox/issues +PackageName: VOICEVOX +PackageUrl: https://github.com/VOICEVOX/voicevox +License: Proprietary +LicenseUrl: https://github.com/VOICEVOX/voicevox/blob/HEAD/LICENSE +ShortDescription: 無料で使える中品質なテキスト読み上げソフトウェア、VOICEVOXのエディター +ReleaseNotes: |- + - Windows + - インストーラー版(CPU) + - インストーラー版(GPU/DirectML版) + - インストーラー版(GPU/CUDA版) + - zip版(CPU) + - zip版(GPU/DirectML版) + - z̶i̶p̶版̶(̶G̶P̶U̶/̶C̶U̶D̶A̶版̶)̶ + - Mac + - インストーラー版 (CPU/x64版) + - インストーラー版 (CPU/arm64版) + - zip版 (CPU/x64版) + - zip版 (CPU/arm64版) + - Linux + - インストーラー版は VOICEVOX公式ページ にあります + - tar.gz版(CPU/x64) + - tar.gz版(CPU/arm64) + - t̶a̶r̶.̶g̶z̶版̶(̶G̶P̶U̶/̶C̶U̶D̶A̶版̶)̶ + 追加機能 + - キャラクター「ユーレイちゃん」「東北ずん子」「東北きりたん」「東北イタコ」を追加 + - キャラクター「猫使アル」「猫使ビィ」「離途」「黒沢冴白」のスタイルを追加・更新 + What's Changed + - feat: [release-0.24] to 0.24.2 by @Hiroshiba in #2705 + Full Changelog: 0.24.1...0.24.2 +ReleaseNotesUrl: https://github.com/VOICEVOX/voicevox/releases/tag/0.24.2 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.24.2/HiroshibaKazuyuki.VOICEVOX.CPU.yaml b/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.24.2/HiroshibaKazuyuki.VOICEVOX.CPU.yaml new file mode 100644 index 0000000000000..e25ce5b8fdc50 --- /dev/null +++ b/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.24.2/HiroshibaKazuyuki.VOICEVOX.CPU.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: HiroshibaKazuyuki.VOICEVOX.CPU +PackageVersion: 0.24.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/h/Hugo/Hugo/0.148.0/Hugo.Hugo.installer.yaml b/manifests/h/Hugo/Hugo/0.148.0/Hugo.Hugo.installer.yaml new file mode 100644 index 0000000000000..9bf3e94a499c7 --- /dev/null +++ b/manifests/h/Hugo/Hugo/0.148.0/Hugo.Hugo.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Hugo.Hugo +PackageVersion: 0.148.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: hugo.exe + PortableCommandAlias: hugo +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/gohugoio/hugo/releases/download/v0.148.0/hugo_0.148.0_windows-amd64.zip + InstallerSha256: 4C44A475FF1391145C69ACE55CF1D3C7848F7FC735475B1CACE66E630AF3EC1A +- Architecture: arm64 + InstallerUrl: https://github.com/gohugoio/hugo/releases/download/v0.148.0/hugo_0.148.0_windows-arm64.zip + InstallerSha256: 4692EDA83748FCDF5C80EAA523E9E14A4917FB7C893583C8F400FD6101B1D93E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/Hugo/Hugo/0.148.0/Hugo.Hugo.locale.en-US.yaml b/manifests/h/Hugo/Hugo/0.148.0/Hugo.Hugo.locale.en-US.yaml new file mode 100644 index 0000000000000..a75b2edbbcfce --- /dev/null +++ b/manifests/h/Hugo/Hugo/0.148.0/Hugo.Hugo.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.10.0.schema.json + +PackageIdentifier: Hugo.Hugo +PackageVersion: 0.148.0 +PackageLocale: en-US +Publisher: The Hugo Authors +PublisherUrl: https://gohugo.io/ +PublisherSupportUrl: https://discourse.gohugo.io/ +PackageName: Hugo +PackageUrl: https://gohugo.io/ +License: Apache-2.0 +LicenseUrl: https://github.com/gohugoio/hugo/blob/HEAD/LICENSE +Copyright: Copyright 2024 The Hugo Authors. +ShortDescription: The world’s fastest framework for building websites +Description: |- + Hugo is one of the most popular open-source static site generators. + With its amazing speed and flexibility, Hugo makes building websites fun again. +Tags: +- blog +- blog-engine +- cms +- content-management-system +- documentation +- documentation-tool +- static-site +- static-site-generator +ReleaseNotes: |- + Note + - Fix some uglyURLs issues for home, section and taxonomy kind (note) b8ba33ca9 @bep #4428 #7497 + - Fix branch paths when OutputFormat.Path is configured (note) f967212b7 @bep #13829 + Bug fixes + - resources/page: Allow full datetime prefix in filenames 1b4c42366 @jmooring #13830 + Improvements + - Add Ancestors (plural) method to GitInfo, rename Ancestor field to Parent 3e2f1cdfd @bep #13839 + - Allow creating home pages from content adapters bba6996e1 @bep + - Remove the internal GitInfo type and make Page.GitInf() return a pointer 90d397b14 @bep #5693 + - source: Expose Ancestor in GitInfo 61e6c730d @jenbroek #5693 + - config: Increase test coverage 266d46dcc @pixel365 + - markup/goldmark: Change link and image render hook enablement to enums 84b31721b @jmooring #13535 + - hugolib: Honor implicit "page" type during template selection cfc8d315b @jmooring #13826 + - deploy: walkLocal worker pool for performance dd6e2c872 @davidejones + Dependency Updates + - build(deps): bump github.com/evanw/esbuild from 0.25.5 to 0.25.6 0a5b87028 @dependabot[bot] + - build(deps): bump github.com/olekukonko/tablewriter from 1.0.7 to 1.0.8 94e2c276a @dependabot[bot] + - build(deps): bump github.com/niklasfasching/go-org from 1.8.0 to 1.9.0 e77b2ad8f @dependabot[bot] + - build(deps): bump github.com/alecthomas/chroma/v2 from 2.18.0 to 2.19.0 9487acf6a @dependabot[bot] + - build(deps): bump golang.org/x/tools from 0.32.0 to 0.34.0 1e9a0b93e @dependabot[bot] +ReleaseNotesUrl: https://github.com/gohugoio/hugo/releases/tag/v0.148.0 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://gohugo.io/documentation +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/Hugo/Hugo/0.148.0/Hugo.Hugo.locale.zh-CN.yaml b/manifests/h/Hugo/Hugo/0.148.0/Hugo.Hugo.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6b83cff9a7731 --- /dev/null +++ b/manifests/h/Hugo/Hugo/0.148.0/Hugo.Hugo.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.10.0.schema.json + +PackageIdentifier: Hugo.Hugo +PackageVersion: 0.148.0 +PackageLocale: zh-CN +Publisher: The Hugo Authors +PublisherUrl: https://gohugo.io/ +PublisherSupportUrl: https://discourse.gohugo.io/ +PackageName: Hugo +PackageUrl: https://gohugo.io/ +License: Apache-2.0 +LicenseUrl: https://gohugo.io/about/license +Copyright: Copyright 2024 The Hugo Authors. +ShortDescription: 世界上最快的网站搭建框架 +Description: Hugo 是最受欢迎的开源静态网站生成器之一。凭借其惊人的速度和灵活性,Hugo 让搭建网站又变得有趣起来。 +Tags: +- 内容管理系统 +- 博客 +- 博客引擎 +- 文档 +- 文档工具 +- 文档生成工具 +- 静态网站 +- 静态网站生成器 +ReleaseNotesUrl: https://github.com/gohugoio/hugo/releases/tag/v0.148.0 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://gohugo.io/documentation +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/h/Hugo/Hugo/0.148.0/Hugo.Hugo.yaml b/manifests/h/Hugo/Hugo/0.148.0/Hugo.Hugo.yaml new file mode 100644 index 0000000000000..fa23d76cb19be --- /dev/null +++ b/manifests/h/Hugo/Hugo/0.148.0/Hugo.Hugo.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Hugo.Hugo +PackageVersion: 0.148.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/h/Hugo/Hugo/Extended/0.148.0/Hugo.Hugo.Extended.installer.yaml b/manifests/h/Hugo/Hugo/Extended/0.148.0/Hugo.Hugo.Extended.installer.yaml new file mode 100644 index 0000000000000..00ea799503b97 --- /dev/null +++ b/manifests/h/Hugo/Hugo/Extended/0.148.0/Hugo.Hugo.Extended.installer.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Hugo.Hugo.Extended +PackageVersion: 0.148.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: hugo.exe + PortableCommandAlias: hugo +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/gohugoio/hugo/releases/download/v0.148.0/hugo_extended_0.148.0_windows-amd64.zip + InstallerSha256: 2649FB42F79066FA5B03910691C253A3E824A26E79789299EB5B6276405C2506 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/Hugo/Hugo/Extended/0.148.0/Hugo.Hugo.Extended.locale.en-US.yaml b/manifests/h/Hugo/Hugo/Extended/0.148.0/Hugo.Hugo.Extended.locale.en-US.yaml new file mode 100644 index 0000000000000..b2c410d821dd1 --- /dev/null +++ b/manifests/h/Hugo/Hugo/Extended/0.148.0/Hugo.Hugo.Extended.locale.en-US.yaml @@ -0,0 +1,59 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Hugo.Hugo.Extended +PackageVersion: 0.148.0 +PackageLocale: en-US +Publisher: The Hugo Authors +PublisherUrl: https://gohugo.io/ +PublisherSupportUrl: https://discourse.gohugo.io/ +Author: The Hugo Authors +PackageName: Hugo (Extended) +PackageUrl: https://gohugo.io/ +License: Apache-2.0 +LicenseUrl: https://github.com/gohugoio/hugo/blob/HEAD/LICENSE +Copyright: Copyright 2024 The Hugo Authors. +ShortDescription: The world’s fastest framework for building websites (with WebP encoding and Sass transpiling support) +Description: |- + Hugo is one of the most popular open-source static site generators. + With its amazing speed and flexibility, Hugo makes building websites fun again. + Hugo is available in two flavors: standard and extended. + With the extended flavor you can: + - Encode WebP images (decoding is also available in the standard build) + - Transpile Sass to CSS using the embedded LibSass transpiler +Tags: +- blog +- blog-engine +- cms +- content-management-system +- documentation +- documentation-tool +- static-site +- static-site-generator +ReleaseNotes: |- + Note + - Fix some uglyURLs issues for home, section and taxonomy kind (note) b8ba33ca9 @bep #4428 #7497 + - Fix branch paths when OutputFormat.Path is configured (note) f967212b7 @bep #13829 + Bug fixes + - resources/page: Allow full datetime prefix in filenames 1b4c42366 @jmooring #13830 + Improvements + - Add Ancestors (plural) method to GitInfo, rename Ancestor field to Parent 3e2f1cdfd @bep #13839 + - Allow creating home pages from content adapters bba6996e1 @bep + - Remove the internal GitInfo type and make Page.GitInf() return a pointer 90d397b14 @bep #5693 + - source: Expose Ancestor in GitInfo 61e6c730d @jenbroek #5693 + - config: Increase test coverage 266d46dcc @pixel365 + - markup/goldmark: Change link and image render hook enablement to enums 84b31721b @jmooring #13535 + - hugolib: Honor implicit "page" type during template selection cfc8d315b @jmooring #13826 + - deploy: walkLocal worker pool for performance dd6e2c872 @davidejones + Dependency Updates + - build(deps): bump github.com/evanw/esbuild from 0.25.5 to 0.25.6 0a5b87028 @dependabot[bot] + - build(deps): bump github.com/olekukonko/tablewriter from 1.0.7 to 1.0.8 94e2c276a @dependabot[bot] + - build(deps): bump github.com/niklasfasching/go-org from 1.8.0 to 1.9.0 e77b2ad8f @dependabot[bot] + - build(deps): bump github.com/alecthomas/chroma/v2 from 2.18.0 to 2.19.0 9487acf6a @dependabot[bot] + - build(deps): bump golang.org/x/tools from 0.32.0 to 0.34.0 1e9a0b93e @dependabot[bot] +ReleaseNotesUrl: https://github.com/gohugoio/hugo/releases/tag/v0.148.0 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://gohugo.io/documentation +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/Hugo/Hugo/Extended/0.148.0/Hugo.Hugo.Extended.locale.zh-CN.yaml b/manifests/h/Hugo/Hugo/Extended/0.148.0/Hugo.Hugo.Extended.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6a457063d436f --- /dev/null +++ b/manifests/h/Hugo/Hugo/Extended/0.148.0/Hugo.Hugo.Extended.locale.zh-CN.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Hugo.Hugo.Extended +PackageVersion: 0.148.0 +PackageLocale: zh-CN +Publisher: The Hugo Authors +PublisherUrl: https://gohugo.io/ +PublisherSupportUrl: https://discourse.gohugo.io/ +Author: The Hugo Authors +PackageName: Hugo(扩展版) +PackageUrl: https://gohugo.io/ +License: Apache-2.0 +LicenseUrl: https://gohugo.io/about/license +Copyright: Copyright 2024 The Hugo Authors. +ShortDescription: 世界上最快的网站搭建框架(支持 WebP 编码和 Sass 转译) +Description: |- + Hugo 是最受欢迎的开源静态网站生成器之一。凭借其惊人的速度和灵活性,Hugo 让搭建网站又变得有趣起来。 + Hugo 有两种版本:标准版和扩展版。在扩展版本中,您可以 + - 编码 WebP 图片(标准版也可以进行解码) + - 使用内嵌的 LibSass 转译器将 Sass 转译为 CSS +Tags: +- 内容管理系统 +- 博客 +- 博客引擎 +- 文档 +- 文档工具 +- 文档生成工具 +- 静态网站 +- 静态网站生成器 +ReleaseNotesUrl: https://github.com/gohugoio/hugo/releases/tag/v0.148.0 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://gohugo.io/documentation +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/h/Hugo/Hugo/Extended/0.148.0/Hugo.Hugo.Extended.yaml b/manifests/h/Hugo/Hugo/Extended/0.148.0/Hugo.Hugo.Extended.yaml new file mode 100644 index 0000000000000..e3ff981103c25 --- /dev/null +++ b/manifests/h/Hugo/Hugo/Extended/0.148.0/Hugo.Hugo.Extended.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Hugo.Hugo.Extended +PackageVersion: 0.148.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/i/IDMComputerSolutions,Inc/UEStudio/25.0.0.32/IDMComputerSolutions,Inc.UEStudio.installer.yaml b/manifests/i/IDMComputerSolutions,Inc/UEStudio/25.0.0.32/IDMComputerSolutions,Inc.UEStudio.installer.yaml new file mode 100644 index 0000000000000..fe83541256a3d --- /dev/null +++ b/manifests/i/IDMComputerSolutions,Inc/UEStudio/25.0.0.32/IDMComputerSolutions,Inc.UEStudio.installer.yaml @@ -0,0 +1,21 @@ +# Automatically updated by the winget bot at 2025/Jul/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: IDMComputerSolutions,Inc.UEStudio +PackageVersion: 25.0.0.32 +Installers: +- InstallerUrl: https://downloads.ultraedit.com/main/ues/win/ues_english_64.exe + InstallerLocale: en-US + Architecture: x64 + InstallerType: exe + InstallerSwitches: + Silent: /S /SUPPRESSMSGBOXES + SilentWithProgress: /S /SUPPRESSMSGBOXES + InstallerSha256: 8120ADB97A77FB71EB1F2611509566F31302D038282B722084C0F04FEABF6E53 + ProductCode: '{ED4DEBF8-0F73-4A93-82F5-4DA8BADA4595}' + AppsAndFeaturesEntries: + - DisplayName: UEStudio + Publisher: IDM Computer Solutions, Inc. + ProductCode: '{ED4DEBF8-0F73-4A93-82F5-4DA8BADA4595}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/IDMComputerSolutions,Inc/UEStudio/25.0.0.32/IDMComputerSolutions,Inc.UEStudio.locale.en-US.yaml b/manifests/i/IDMComputerSolutions,Inc/UEStudio/25.0.0.32/IDMComputerSolutions,Inc.UEStudio.locale.en-US.yaml new file mode 100644 index 0000000000000..122c1cc77be02 --- /dev/null +++ b/manifests/i/IDMComputerSolutions,Inc/UEStudio/25.0.0.32/IDMComputerSolutions,Inc.UEStudio.locale.en-US.yaml @@ -0,0 +1,16 @@ +# Automatically updated by the winget bot at 2025/Jul/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: IDMComputerSolutions,Inc.UEStudio +PackageVersion: 25.0.0.32 +PackageLocale: en-US +Publisher: IDM Computer Solutions, Inc. +PublisherUrl: https://www.ultraedit.com/company/about-us +PublisherSupportUrl: https://www.ultraedit.com/support/ +PrivacyUrl: https://www.ideracorp.com/Legal/PrivacyShield +PackageName: UEStudio +PackageUrl: https://www.ultraedit.com/products/uestudio/ +License: Commercial +ShortDescription: A Git-flavored rendition of UltraEdit. UEStudio features native integration of all your Git branches and team collaboration features. Integrates fully with other UltraEdit products. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/IDMComputerSolutions,Inc/UEStudio/25.0.0.32/IDMComputerSolutions,Inc.UEStudio.yaml b/manifests/i/IDMComputerSolutions,Inc/UEStudio/25.0.0.32/IDMComputerSolutions,Inc.UEStudio.yaml new file mode 100644 index 0000000000000..d3550e99dfbd9 --- /dev/null +++ b/manifests/i/IDMComputerSolutions,Inc/UEStudio/25.0.0.32/IDMComputerSolutions,Inc.UEStudio.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jul/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: IDMComputerSolutions,Inc.UEStudio +PackageVersion: 25.0.0.32 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/i/IbrahimDursun/jjui/0.8.12/IbrahimDursun.jjui.installer.yaml b/manifests/i/IbrahimDursun/jjui/0.8.12/IbrahimDursun.jjui.installer.yaml new file mode 100644 index 0000000000000..e394f2c1a0fa8 --- /dev/null +++ b/manifests/i/IbrahimDursun/jjui/0.8.12/IbrahimDursun.jjui.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: IbrahimDursun.jjui +PackageVersion: 0.8.12 +InstallerType: zip +NestedInstallerType: portable +Commands: +- jjui +ReleaseDate: 2025-07-04 +Installers: +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: jjui-0.8.12-windows-amd64.exe + PortableCommandAlias: jjui + InstallerUrl: https://github.com/idursun/jjui/releases/download/v0.8.12/jjui-0.8.12-windows-amd64.zip + InstallerSha256: 00570838C2E199A4A7E65B00FFD40F7B29EA2794856B03B94FFAD34B4AE8772F +- Architecture: arm64 + NestedInstallerFiles: + - RelativeFilePath: jjui-0.8.12-windows-arm64.exe + PortableCommandAlias: jjui + InstallerUrl: https://github.com/idursun/jjui/releases/download/v0.8.12/jjui-0.8.12-windows-arm64.zip + InstallerSha256: 5CA196459911E3652252D57F7655D2F07031EB0DC1F770D806A7F3FF1D22595B +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/IbrahimDursun/jjui/0.8.12/IbrahimDursun.jjui.locale.en-US.yaml b/manifests/i/IbrahimDursun/jjui/0.8.12/IbrahimDursun.jjui.locale.en-US.yaml new file mode 100644 index 0000000000000..0dc6d20cbe8ca --- /dev/null +++ b/manifests/i/IbrahimDursun/jjui/0.8.12/IbrahimDursun.jjui.locale.en-US.yaml @@ -0,0 +1,75 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: IbrahimDursun.jjui +PackageVersion: 0.8.12 +PackageLocale: en-US +Publisher: Ibrahim Dursun +PublisherUrl: https://idursun.com/ +PublisherSupportUrl: https://github.com/idursun/jjui/issues +# PrivacyUrl: +Author: Ibrahim Dursun +PackageName: Jujutsu UI +PackageUrl: https://github.com/idursun/jjui +License: MIT +LicenseUrl: https://github.com/idursun/jjui/blob/HEAD/LICENSE +Copyright: Copyright (c) 2025 ibrahim dursun +# CopyrightUrl: +ShortDescription: Jujutsu UI (jjui) is a Text User Interface (TUI) designed for interacting with the Jujutsu version control system. +# Description: +Moniker: jjui +Tags: +- jj +ReleaseNotes: |- + What's Changed + Improvements + Revset + - Completions show on the second line as a list now. You can use tab/shift+tab to cycle forward/backward. + - Loads and adds revset-aliases defined in your jj config to the list of completions. + - Keeps the history. You can use up/down to cycle through revset history. History is only available during the session. (i.e. it's not persisted) + + Squash + Got two new modifiers: + - You can use e for keeping the source revision empty (--keep-emptied) + - You can use i for running the squash operation in interactive mode (--interactive) + - Squash key configuration has changed: + [keys.squash] + mode = ["S"] + keep_emptied = ["e"] + interactive = ["i"] + + Rebase + Revisions to be moved are marked with move marker, and get updated according to the target. (i.e. branch/source will mark all revisions to be moved according to the target) + + Minor + - Details: Added absorb option to absorb changes in the selected files. + - Help window is updated to have 3-columns now. + - Changed auto refresh to proceed only when there's an actual change. + - JJ's colour palette is loaded from jj config at start up and applied to change_id, rest, diff renamed, diff modified, diff removed. This is the first step towards implementing colour themes for jjui. + Fixes + - Revisions view don't get stuck in loading state when the revset don't return any results. + - Selections should be kept as is across auto refreshes. + - Fixed various issues about bookmark management where delete bookmark menu items were not shown, and track/untrack items were shown incorrectly under certain circumstances #155 #156 + - Double width characters should not cause visual glitches #138 + - Fixed visual glitches when extending graph lines to accommodate graph overlays + Contributions + - gitignore: add result for nix build . by @ilyagr in https://github.com/idursun/jjui/pull/133 + - CI and Nix: make nix flake check build the flake by @ilyagr in https://github.com/idursun/jjui/pull/132 + - build(nix): add git version to --version by @teto in https://github.com/idursun/jjui/pull/150 + - doc: Remove a duplicated maintainer mention by @Adda0 in https://github.com/idursun/jjui/pull/153 + - build(nix): allow building flake when self.dirtyRev is not defined by @ilyagr in https://github.com/idursun/jjui/pull/152 + - fixed display of empty revsets (#151) by @Gogopex in https://github.com/idursun/jjui/pull/154 + - fix: refresh SelectedFile on ToggleSelect by @IvanVergiliev in https://github.com/idursun/jjui/pull/158 + New Contributors + - @teto made their first contribution in https://github.com/idursun/jjui/pull/150 + - @Gogopex made their first contribution in https://github.com/idursun/jjui/pull/154 + - @IvanVergiliev made their first contribution in https://github.com/idursun/jjui/pull/158 + Full Changelog: https://github.com/idursun/jjui/compare/v0.8.11...v0.8.12 +ReleaseNotesUrl: https://github.com/idursun/jjui/releases/tag/v0.8.12 +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/idursun/jjui/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/IbrahimDursun/jjui/0.8.12/IbrahimDursun.jjui.locale.zh-CN.yaml b/manifests/i/IbrahimDursun/jjui/0.8.12/IbrahimDursun.jjui.locale.zh-CN.yaml new file mode 100644 index 0000000000000..ceb80fda68205 --- /dev/null +++ b/manifests/i/IbrahimDursun/jjui/0.8.12/IbrahimDursun.jjui.locale.zh-CN.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: IbrahimDursun.jjui +PackageVersion: 0.8.12 +PackageLocale: zh-CN +# Publisher: +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +# PackageName: +# PackageUrl: +# License: +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: Jujutsu UI (jjui) 是一款专为 Jujutsu 版本控制系统设计的文本用户界面 (TUI)。 +# Description: +# Moniker: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/IbrahimDursun/jjui/0.8.12/IbrahimDursun.jjui.yaml b/manifests/i/IbrahimDursun/jjui/0.8.12/IbrahimDursun.jjui.yaml new file mode 100644 index 0000000000000..881cd008ca519 --- /dev/null +++ b/manifests/i/IbrahimDursun/jjui/0.8.12/IbrahimDursun.jjui.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: IbrahimDursun.jjui +PackageVersion: 0.8.12 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/i/iFlytek/iFlyIME/3.0.1746/iFlytek.iFlyIME.installer.yaml b/manifests/i/iFlytek/iFlyIME/3.0.1746/iFlytek.iFlyIME.installer.yaml new file mode 100644 index 0000000000000..27b7ff03a3092 --- /dev/null +++ b/manifests/i/iFlytek/iFlyIME/3.0.1746/iFlytek.iFlyIME.installer.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iFlytek.iFlyIME +PackageVersion: 3.0.1746 +InstallerType: nullsoft +Scope: machine +InstallerSuccessCodes: +- 2 +UpgradeBehavior: install +FileExtensions: +- it +ProductCode: iFlyIME +Installers: +- Architecture: x86 + InstallerUrl: https://download.voicecloud.cn/200ime/iFlyIME_Setup_3.0.1746.exe + InstallerSha256: 733FB254ABE55BF6E8B0D7AD9800E6108ED6D38EC7D79333A7083D904EE80B8F +- Architecture: x64 + InstallerUrl: https://download.voicecloud.cn/200ime/iFlyIME_Setup_3.0.1746.exe + InstallerSha256: 733FB254ABE55BF6E8B0D7AD9800E6108ED6D38EC7D79333A7083D904EE80B8F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iFlytek/iFlyIME/3.0.1746/iFlytek.iFlyIME.locale.en-US.yaml b/manifests/i/iFlytek/iFlyIME/3.0.1746/iFlytek.iFlyIME.locale.en-US.yaml new file mode 100644 index 0000000000000..13e194a445d7e --- /dev/null +++ b/manifests/i/iFlytek/iFlyIME/3.0.1746/iFlytek.iFlyIME.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.10.0.schema.json + +PackageIdentifier: iFlytek.iFlyIME +PackageVersion: 3.0.1746 +PackageLocale: en-US +Publisher: 科大讯飞股份有限公司 +PublisherUrl: https://www.iflytek.com/ +PublisherSupportUrl: https://bbs.xunfei.cn/ +PrivacyUrl: https://s1.voicecloud.cn/resources/help-tryrelease2011/private.html +Author: Iflytek Co., Ltd. +PackageName: 讯飞输入法 +PackageUrl: https://srf.xunfei.cn/ +License: Freeware +LicenseUrl: https://s1.voicecloud.cn/activity/imeuserserviceagreement/index.html +Copyright: Copyright © 2010-2024 iFLYTEK Inc. All Rights Reserved. +ShortDescription: A convenient and easy-to-use input method that integrates voice, handwriting and Pinyin input methods +Description: iFlyIME integrates voice, handwriting and Pinyin input methods, and features powerful speech recognition, innovative touchpad handwriting and simple input interface, which greatly improves input speed and makes it easier and faster to use. +Tags: +- chinese +- handwriting +- ime +- input-method +- pinyin +- speech +- voice +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iFlytek/iFlyIME/3.0.1746/iFlytek.iFlyIME.locale.zh-CN.yaml b/manifests/i/iFlytek/iFlyIME/3.0.1746/iFlytek.iFlyIME.locale.zh-CN.yaml new file mode 100644 index 0000000000000..150470c0cd6a2 --- /dev/null +++ b/manifests/i/iFlytek/iFlyIME/3.0.1746/iFlytek.iFlyIME.locale.zh-CN.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iFlytek.iFlyIME +PackageVersion: 3.0.1746 +PackageLocale: zh-CN +Publisher: 科大讯飞股份有限公司 +PublisherUrl: https://www.iflytek.com/ +PublisherSupportUrl: https://bbs.xunfei.cn/ +PrivacyUrl: https://s1.voicecloud.cn/resources/help-tryrelease2011/private.html +Author: 科大讯飞股份有限公司 +PackageName: 讯飞输入法 +PackageUrl: https://srf.xunfei.cn/ +License: 免费软件 +LicenseUrl: https://s1.voicecloud.cn/activity/imeuserserviceagreement/index.html +Copyright: Copyright © 2010-2024 iFLYTEK Inc. All Rights Reserved. +ShortDescription: 集语音、手写、拼音等输入方式于一体,非常便捷、好用的输入法。 +Description: 讯飞输入法集语音、手写、拼音输入于一体,具有强大的语音识别能力,创新的触摸板手写,极简的输入界面,大大提升了输入速度,使用更加方便快捷。 +Tags: +- 中文 +- 手写 +- 拼音 +- 汉语 +- 语音 +- 输入法 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iFlytek/iFlyIME/3.0.1746/iFlytek.iFlyIME.yaml b/manifests/i/iFlytek/iFlyIME/3.0.1746/iFlytek.iFlyIME.yaml new file mode 100644 index 0000000000000..a718a92d79f5c --- /dev/null +++ b/manifests/i/iFlytek/iFlyIME/3.0.1746/iFlytek.iFlyIME.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iFlytek.iFlyIME +PackageVersion: 3.0.1746 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/i/iTop/iTopDataRecovery/5.2.0.832/iTop.iTopDataRecovery.installer.yaml b/manifests/i/iTop/iTopDataRecovery/5.2.0.832/iTop.iTopDataRecovery.installer.yaml deleted file mode 100644 index ae63c1f05e12e..0000000000000 --- a/manifests/i/iTop/iTopDataRecovery/5.2.0.832/iTop.iTopDataRecovery.installer.yaml +++ /dev/null @@ -1,13 +0,0 @@ -# Automatically updated by the winget bot at 2025/May/14 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: iTop.iTopDataRecovery -PackageVersion: 5.2.0.832 -InstallerLocale: en-US -InstallerType: inno -Installers: -- Architecture: x86 - InstallerUrl: https://download.itopupdate.com/dl/itop-data-recovery-setup.exe - InstallerSha256: EE2504AE3613DAC4F164086FB30FB041DE11C67543354145DDEFF8E5CDC2117E -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/i/iTop/iTopDataRecovery/5.2.0.832/iTop.iTopDataRecovery.locale.en-US.yaml b/manifests/i/iTop/iTopDataRecovery/5.2.0.832/iTop.iTopDataRecovery.locale.en-US.yaml deleted file mode 100644 index e7e686c3f549f..0000000000000 --- a/manifests/i/iTop/iTopDataRecovery/5.2.0.832/iTop.iTopDataRecovery.locale.en-US.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Automatically updated by the winget bot at 2025/May/14 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: iTop.iTopDataRecovery -PackageVersion: 5.2.0.832 -PackageLocale: en-US -Publisher: iTop Inc. -PublisherUrl: https://www.itopvpn.com/ -PublisherSupportUrl: https://www.itopvpn.com/support -PrivacyUrl: https://www.itopvpn.com/privacy -PackageName: iTop Data Recovery -PackageUrl: https://www.itopvpn.com/data-recovery-software -License: Freeware -LicenseUrl: https://www.itopvpn.com/eula -Copyright: Copyright © iTop Inc. All rights reserved. -ShortDescription: Data Recovery Made Easy - iTop Data Recovery -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/i/igoogolx/itun2socks/1.30.0/igoogolx.itun2socks.installer.yaml b/manifests/i/igoogolx/itun2socks/1.30.0/igoogolx.itun2socks.installer.yaml new file mode 100644 index 0000000000000..f6c62431423e4 --- /dev/null +++ b/manifests/i/igoogolx/itun2socks/1.30.0/igoogolx.itun2socks.installer.yaml @@ -0,0 +1,16 @@ +# Created with WinGet Releaser using komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: igoogolx.itun2socks +PackageVersion: 1.30.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: itun2socks.exe +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/igoogolx/itun2socks/releases/download/v1.30.0/itun2socks_1.30.0_windows_amd64.zip + InstallerSha256: 0FA258954A9D12FBB21E6545AEBD27D9AE3E8FE00548B9D64B6D752C9FA56B31 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/igoogolx/itun2socks/1.30.0/igoogolx.itun2socks.locale.en-US.yaml b/manifests/i/igoogolx/itun2socks/1.30.0/igoogolx.itun2socks.locale.en-US.yaml new file mode 100644 index 0000000000000..500b9b6c35f5c --- /dev/null +++ b/manifests/i/igoogolx/itun2socks/1.30.0/igoogolx.itun2socks.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created with WinGet Releaser using komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: igoogolx.itun2socks +PackageVersion: 1.30.0 +PackageLocale: en-US +Publisher: igoogolx +PublisherUrl: https://github.com/igoogolx +PublisherSupportUrl: https://github.com/igoogolx/itun2socks/issues +PackageName: itun2socks +PackageUrl: https://github.com/igoogolx/itun2socks +License: GPL-3.0 +LicenseUrl: https://github.com/igoogolx/itun2socks/blob/HEAD/LICENSE +ShortDescription: tun proxy tool +Tags: +- clash +- shadowsocks +- vpn +ReleaseNotes: |- + Changelog + - 30144c0 v1.30.0 (#96) + 🛡 VirusTotal GitHub Action analysis: + - itun2socks_1.30.0_darwin_amd64.zip + - itun2socks_1.30.0_darwin_arm64.zip + - itun2socks_1.30.0_windows_386.zip + - itun2socks_1.30.0_windows_amd64.zip + - itun2socks_1.30.0_windows_arm64.zip +ReleaseNotesUrl: https://github.com/igoogolx/itun2socks/releases/tag/v1.30.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/igoogolx/itun2socks/1.30.0/igoogolx.itun2socks.yaml b/manifests/i/igoogolx/itun2socks/1.30.0/igoogolx.itun2socks.yaml new file mode 100644 index 0000000000000..2636aa1523c05 --- /dev/null +++ b/manifests/i/igoogolx/itun2socks/1.30.0/igoogolx.itun2socks.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: igoogolx.itun2socks +PackageVersion: 1.30.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/i/igoogolx/lux/1.35.0/igoogolx.lux.installer.yaml b/manifests/i/igoogolx/lux/1.35.0/igoogolx.lux.installer.yaml new file mode 100644 index 0000000000000..01f146504bafb --- /dev/null +++ b/manifests/i/igoogolx/lux/1.35.0/igoogolx.lux.installer.yaml @@ -0,0 +1,20 @@ +# Created with WinGet Releaser using komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: igoogolx.lux +PackageVersion: 1.35.0 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +ProductCode: 80DF132E-434A-4DAB-9BC8-48A79C8383B9_is1 +ReleaseDate: 2025-07-08 +AppsAndFeaturesEntries: +- ProductCode: 80DF132E-434A-4DAB-9BC8-48A79C8383B9_is1 +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\lux' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/igoogolx/lux/releases/download/v1.35.0/lux-1.35.0-x64-windows.exe + InstallerSha256: BB18041498334A5671361478746659E1AE35FDA91395141C0559FDFB832E02CC +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/igoogolx/lux/1.35.0/igoogolx.lux.locale.en-US.yaml b/manifests/i/igoogolx/lux/1.35.0/igoogolx.lux.locale.en-US.yaml new file mode 100644 index 0000000000000..2010e84198b5c --- /dev/null +++ b/manifests/i/igoogolx/lux/1.35.0/igoogolx.lux.locale.en-US.yaml @@ -0,0 +1,39 @@ +# Created with WinGet Releaser using komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: igoogolx.lux +PackageVersion: 1.35.0 +PackageLocale: en-US +Publisher: igoogolx +PublisherUrl: https://github.com/igoogolx +PublisherSupportUrl: https://github.com/igoogolx/lux/issues +PackageName: lux +PackageUrl: https://github.com/igoogolx/lux +License: GPL-3.0 +LicenseUrl: https://github.com/igoogolx/lux/blob/HEAD/LICENSE +Copyright: Copyright © 2022 igoogolx +ShortDescription: A system network proxy tool +Tags: +- golang +- macos +- proxy +- shadowsocks +- tun2socks +- vpn +- windows +ReleaseNotes: |- + What's Changed + New features + - feat: support fake ip for Tun + - feat: check for update forcefully + Bug fixes 🐛 + - fix: fail to check for update in beat version + Other changes + - chore: update dependencies + 🛡 VirusTotal GitHub Action analysis: + - lux-1.35.0-amd64-macos.dmg + - lux-1.35.0-arm64-macos.dmg + - lux-1.35.0-x64-windows.exe +ReleaseNotesUrl: https://github.com/igoogolx/lux/releases/tag/v1.35.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/igoogolx/lux/1.35.0/igoogolx.lux.yaml b/manifests/i/igoogolx/lux/1.35.0/igoogolx.lux.yaml new file mode 100644 index 0000000000000..58f9e22166ccf --- /dev/null +++ b/manifests/i/igoogolx/lux/1.35.0/igoogolx.lux.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: igoogolx.lux +PackageVersion: 1.35.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/Toolbox/2.7.0.48109/JetBrains.Toolbox.installer.yaml b/manifests/j/JetBrains/Toolbox/2.7.0.48109/JetBrains.Toolbox.installer.yaml new file mode 100644 index 0000000000000..caf03be62038a --- /dev/null +++ b/manifests/j/JetBrains/Toolbox/2.7.0.48109/JetBrains.Toolbox.installer.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: JetBrains.Toolbox +PackageVersion: 2.7.0.48109 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /headless + SilentWithProgress: /S +UpgradeBehavior: install +Protocols: +- jetbrains +ProductCode: Toolbox +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x64 + InstallerUrl: https://download.jetbrains.com/toolbox/jetbrains-toolbox-2.7.0.48109.exe + InstallerSha256: FA906321DDE80F4313F31E419191CFAA3F5D826E5F49F1961AFB6AF677754EC1 +- Architecture: arm64 + InstallerUrl: https://download.jetbrains.com/toolbox/jetbrains-toolbox-2.7.0.48109-arm64.exe + InstallerSha256: AADBA399D7077588372A35EE9B50493EC5A218C4CA944B471E02DE2215A3F75D +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/Toolbox/2.7.0.48109/JetBrains.Toolbox.locale.en-US.yaml b/manifests/j/JetBrains/Toolbox/2.7.0.48109/JetBrains.Toolbox.locale.en-US.yaml new file mode 100644 index 0000000000000..9350a02a2c43f --- /dev/null +++ b/manifests/j/JetBrains/Toolbox/2.7.0.48109/JetBrains.Toolbox.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: JetBrains.Toolbox +PackageVersion: 2.7.0.48109 +PackageLocale: en-US +Publisher: JetBrains +PublisherUrl: https://www.jetbrains.com/ +PublisherSupportUrl: https://www.jetbrains.com/support/ +PrivacyUrl: https://www.jetbrains.com/legal/docs/privacy/privacy/ +Author: JetBrains s.r.o. +PackageName: JetBrains Toolbox +PackageUrl: https://www.jetbrains.com/toolbox-app/ +License: Freeware +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ +Copyright: Copyright © 2000-2024 JetBrains s.r.o. +ShortDescription: Manage your IDEs the easy way +Description: Open any of your projects in any of the IDEs with one click. +Moniker: jetbrains-toolbox +Tags: +- jetbrains +ReleaseNotes: |- + What's New in Toolbox App 2.7 + - Fixed tray icon behavior on Linux. TBX-14912 + - Auto-start remote environment on project open. TBX-15102 + - Removed temp files after failed IDE installs. TBX-10903 + - Fixed remote agent overriding IDE heap size. TBX-14600 +ReleaseNotesUrl: https://youtrack.jetbrains.com/releaseNotes?title=Toolbox%20App%202.7%20Release%20Notes&q=in:%20TBX%20Fix%20versions:%202.7%20%23Resolved%20-Duplicate%20-Answered +Documentations: +- DocumentLabel: FAQ & Shortcuts + DocumentUrl: https://www.jetbrains.com/toolbox-app/faq/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/Toolbox/2.7.0.48109/JetBrains.Toolbox.locale.zh-CN.yaml b/manifests/j/JetBrains/Toolbox/2.7.0.48109/JetBrains.Toolbox.locale.zh-CN.yaml new file mode 100644 index 0000000000000..11fb17320eb23 --- /dev/null +++ b/manifests/j/JetBrains/Toolbox/2.7.0.48109/JetBrains.Toolbox.locale.zh-CN.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: JetBrains.Toolbox +PackageVersion: 2.7.0.48109 +PackageLocale: zh-CN +Publisher: JetBrains +PublisherUrl: https://www.jetbrains.com/zh-cn/ +PublisherSupportUrl: https://www.jetbrains.com/zh-cn/support/ +PrivacyUrl: https://www.jetbrains.com/legal/docs/privacy/privacy/ +Author: JetBrains s.r.o. +PackageName: JetBrains Toolbox +PackageUrl: https://www.jetbrains.com/zh-cn/toolbox-app/ +License: 免费软件 +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ +Copyright: Copyright © 2000-2024 JetBrains s.r.o. +ShortDescription: 轻松管理您的 IDE +Description: 一键打开任何 IDE 中的任意项目。 +Tags: +- jetbrains +ReleaseNotesUrl: https://youtrack.jetbrains.com/releaseNotes?title=Toolbox%20App%202.7%20Release%20Notes&q=in:%20TBX%20Fix%20versions:%202.7%20%23Resolved%20-Duplicate%20-Answered +Documentations: +- DocumentLabel: 常见问题解答和快捷键 + DocumentUrl: https://www.jetbrains.com/zh-cn/toolbox-app/faq/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/Toolbox/2.7.0.48109/JetBrains.Toolbox.yaml b/manifests/j/JetBrains/Toolbox/2.7.0.48109/JetBrains.Toolbox.yaml new file mode 100644 index 0000000000000..83c7552291afe --- /dev/null +++ b/manifests/j/JetBrains/Toolbox/2.7.0.48109/JetBrains.Toolbox.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: JetBrains.Toolbox +PackageVersion: 2.7.0.48109 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/JiLuo/Xterminal/3.21.0/JiLuo.Xterminal.installer.yaml b/manifests/j/JiLuo/Xterminal/3.21.0/JiLuo.Xterminal.installer.yaml new file mode 100644 index 0000000000000..29255d2547bb2 --- /dev/null +++ b/manifests/j/JiLuo/Xterminal/3.21.0/JiLuo.Xterminal.installer.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: JiLuo.Xterminal +PackageVersion: 3.21.0 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- ssh +- telnet +ProductCode: 0e1444f2-e736-59a6-8826-a4f04175d221 +ReleaseDate: 2025-07-03 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://cdn-office.xterminal.cn/downloads/XTerminal-3.21.0-win-x64-installer.exe + InstallerSha256: A8F5B05A9EA2B45EA717AAC4CD6AB28746BBE7FE6ACEAD49BE43C903D6D0E7D7 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://cdn-office.xterminal.cn/downloads/XTerminal-3.21.0-win-x64-installer.exe + InstallerSha256: A8F5B05A9EA2B45EA717AAC4CD6AB28746BBE7FE6ACEAD49BE43C903D6D0E7D7 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/JiLuo/Xterminal/3.21.0/JiLuo.Xterminal.locale.en-US.yaml b/manifests/j/JiLuo/Xterminal/3.21.0/JiLuo.Xterminal.locale.en-US.yaml new file mode 100644 index 0000000000000..bb4617f1b4060 --- /dev/null +++ b/manifests/j/JiLuo/Xterminal/3.21.0/JiLuo.Xterminal.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: JiLuo.Xterminal +PackageVersion: 3.21.0 +PackageLocale: en-US +Publisher: Xterminal +PublisherUrl: https://www.xterminal.cn/ +PublisherSupportUrl: https://host.terminal.icu/ +PrivacyUrl: https://www.xterminal.cn/privacy +Author: JiLuo Studio +PackageName: XTerminal +PackageUrl: https://www.xterminal.cn/ +License: Proprietary +LicenseUrl: https://www.xterminal.cn/license +Copyright: Copyright © xterminal.cn 2021-2024 All rights reserved. +ShortDescription: A convenient development tool more than SSH/console/more +Description: The best online SSH and SFTP tool that supports online file editing, status monitoring and private deployment, providing you with the best data security! +Tags: +- console +- download +- file +- remote +- server +- sftp +- shell +- ssh +- telnet +- terminal +- transfer +- upload +ReleaseNotesUrl: https://host.terminal.icu/topic/1865 +Documentations: +- DocumentLabel: Help + DocumentUrl: https://www.yuque.com/u64817/isrom7 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JiLuo/Xterminal/3.21.0/JiLuo.Xterminal.locale.zh-CN.yaml b/manifests/j/JiLuo/Xterminal/3.21.0/JiLuo.Xterminal.locale.zh-CN.yaml new file mode 100644 index 0000000000000..4fe6501bcb85a --- /dev/null +++ b/manifests/j/JiLuo/Xterminal/3.21.0/JiLuo.Xterminal.locale.zh-CN.yaml @@ -0,0 +1,77 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: JiLuo.Xterminal +PackageVersion: 3.21.0 +PackageLocale: zh-CN +Publisher: Xterminal +PublisherUrl: https://www.xterminal.cn/ +PublisherSupportUrl: https://host.terminal.icu/ +PrivacyUrl: https://www.xterminal.cn/privacy +Author: 深圳市罗湖区犄落信息咨询工作室 +PackageName: XTerminal +PackageUrl: https://www.xterminal.cn/ +License: 专有软件 +LicenseUrl: https://www.xterminal.cn/license +Copyright: Copyright © xterminal.cn 2021-2024 All rights reserved. +ShortDescription: 更好用的开发工具,但不止于 SSH/控制台/More +Description: 最好用的在线 SSH、SFTP 工具,支持文件在线编辑、状态监控,支持私有部署线路,给你最大的数据安全保障! +Tags: +- sftp +- shell +- ssh +- telnet +- 上传 +- 下载 +- 传输 +- 控制台 +- 文件 +- 服务器 +- 终端 +- 远程 +ReleaseNotes: |- + v3.21.0 | 2025-07-03(实验通道) + 新增 + - Telnet 按键映射功能,支持自定义按键映射配置 + 优化 + - 网络卡片组件上传下载数据顺序调整,优化界面展示 + - SSH 连接和服务器编辑组件显示层级优化 + 修复 + - 高亮会导致 vim 等命令实效问题 + v3.20.2 | 2025-07-03(实验通道) + 新增 + - 终端高亮(完全重构) + - 支持异步颜色渲染,提高刷新频率 + - 预设高亮逻辑同步升级 + - 现在支持全屏高亮,不再限制单屏 + - 预设高亮规则更新(设置-通用终端-自定义高亮-恢复默认即可切换) + - 文件传输任务管理(完全重构) + - 一键删除全部任务 + - 失败任务可一键重试 + - 支持暂停/恢复全部任务 + - 可清理已完成记录 + - 下载目录一键打开 + - 网络断开自动暂停,恢复后继续 + - 布局自动升级并带版本 + - 批量执行界面:命令输入框重构,交互更友好(完全重构) + - 锁屏界面 UI 更新(重新设计) + - 登录界面支持多步骤验证,提升安全性 + 优化 + - 树形列表点击与键盘操作手感提升 + - 命令解析加入缓存,加速解析(完全重构) + - 新增压缩下载,提高下载效率 + - 终端高亮渲染算法优化,降低内存使用 + - 缩短应用启动耗时 + - 窗口状态感知:最大化按钮自动切换图标 + - 隐私文本长度限制:防止超长内容泄露 + 修复 + - 解决文件传输中断与取消不可靠问题 + - 传输错误提示与重试逻辑完善 + - 修复弹窗关闭后残留阴影 + - 修复锁屏时间判断导致的误触发 +ReleaseNotesUrl: https://host.terminal.icu/topic/1865 +Documentations: +- DocumentLabel: 帮助 + DocumentUrl: https://www.yuque.com/u64817/isrom7 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JiLuo/Xterminal/3.21.0/JiLuo.Xterminal.yaml b/manifests/j/JiLuo/Xterminal/3.21.0/JiLuo.Xterminal.yaml new file mode 100644 index 0000000000000..61786972c1cf4 --- /dev/null +++ b/manifests/j/JiLuo/Xterminal/3.21.0/JiLuo.Xterminal.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: JiLuo.Xterminal +PackageVersion: 3.21.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/k/KDE/Filelight/25.04.3/KDE.Filelight.installer.yaml b/manifests/k/KDE/Filelight/25.04.3/KDE.Filelight.installer.yaml index 38bb1beb39345..e45f236dde2d8 100644 --- a/manifests/k/KDE/Filelight/25.04.3/KDE.Filelight.installer.yaml +++ b/manifests/k/KDE/Filelight/25.04.3/KDE.Filelight.installer.yaml @@ -9,14 +9,14 @@ ProductCode: Filelight Installers: - Architecture: x64 Scope: user - InstallerUrl: https://cdn.kde.org/ci-builds/utilities/filelight/release-25.04/windows/filelight-release_25.04-1764-windows-cl-msvc2022-x86_64.exe - InstallerSha256: F82E3B33773F9BAB19AC524B72A5E9FBCDD95EDEDD0E1A58A1F4F998E13F0748 + InstallerUrl: https://cdn.kde.org/ci-builds/utilities/filelight/release-25.04/windows/filelight-release_25.04-1778-windows-cl-msvc2022-x86_64.exe + InstallerSha256: 379F64900C45060FC461414C27107A77495A6339B0FA6BC439B5885C88B3F44F InstallerSwitches: Custom: /CurrentUser - Architecture: x64 Scope: machine - InstallerUrl: https://cdn.kde.org/ci-builds/utilities/filelight/release-25.04/windows/filelight-release_25.04-1764-windows-cl-msvc2022-x86_64.exe - InstallerSha256: F82E3B33773F9BAB19AC524B72A5E9FBCDD95EDEDD0E1A58A1F4F998E13F0748 + InstallerUrl: https://cdn.kde.org/ci-builds/utilities/filelight/release-25.04/windows/filelight-release_25.04-1778-windows-cl-msvc2022-x86_64.exe + InstallerSha256: 379F64900C45060FC461414C27107A77495A6339B0FA6BC439B5885C88B3F44F InstallerSwitches: Custom: /AllUsers ManifestType: installer diff --git a/manifests/k/KDE/Haruna/1.4.0/KDE.Haruna.installer.yaml b/manifests/k/KDE/Haruna/1.4.0/KDE.Haruna.installer.yaml index f108dcfccff49..8da2dd299af3d 100644 --- a/manifests/k/KDE/Haruna/1.4.0/KDE.Haruna.installer.yaml +++ b/manifests/k/KDE/Haruna/1.4.0/KDE.Haruna.installer.yaml @@ -9,14 +9,14 @@ ProductCode: Haruna Installers: - Architecture: x64 Scope: user - InstallerUrl: https://cdn.kde.org/ci-builds/multimedia/haruna/master/windows/haruna-master-1216-windows-gcc-x86_64.exe - InstallerSha256: 00FB805E5172B4B0B50B289A7BF2CC03E2738C7585CB617FBACE64D30E1B891C + InstallerUrl: https://cdn.kde.org/ci-builds/multimedia/haruna/master/windows/haruna-master-1254-windows-gcc-x86_64.exe + InstallerSha256: AE0E878D457EC92F3EE8A0776C13618248B010638326F74AEA8DC0D16CF1D085 InstallerSwitches: Custom: /CurrentUser - Architecture: x64 Scope: machine - InstallerUrl: https://cdn.kde.org/ci-builds/multimedia/haruna/master/windows/haruna-master-1216-windows-gcc-x86_64.exe - InstallerSha256: 00FB805E5172B4B0B50B289A7BF2CC03E2738C7585CB617FBACE64D30E1B891C + InstallerUrl: https://cdn.kde.org/ci-builds/multimedia/haruna/master/windows/haruna-master-1254-windows-gcc-x86_64.exe + InstallerSha256: AE0E878D457EC92F3EE8A0776C13618248B010638326F74AEA8DC0D16CF1D085 InstallerSwitches: Custom: /AllUsers ManifestType: installer diff --git a/manifests/k/KDE/KAlarm/master/KDE.KAlarm.installer.yaml b/manifests/k/KDE/KAlarm/master/KDE.KAlarm.installer.yaml index f246e5ae52648..1167c16453fbe 100644 --- a/manifests/k/KDE/KAlarm/master/KDE.KAlarm.installer.yaml +++ b/manifests/k/KDE/KAlarm/master/KDE.KAlarm.installer.yaml @@ -9,14 +9,14 @@ ProductCode: kalarm Installers: - Architecture: x64 Scope: user - InstallerUrl: https://cdn.kde.org/ci-builds/pim/kalarm/master/windows/kalarm-master-2811-windows-cl-msvc2022-x86_64.exe - InstallerSha256: 2F199846D30135A731381C8A1122BC8CE749AC81F6B52B311B3BA310A321F859 + InstallerUrl: https://cdn.kde.org/ci-builds/pim/kalarm/master/windows/kalarm-master-2825-windows-cl-msvc2022-x86_64.exe + InstallerSha256: C77628B305804FAEBFE4350B8992B6405F3E6BC696BB4ADF92C17164CA326CBE InstallerSwitches: Custom: /CurrentUser - Architecture: x64 Scope: machine - InstallerUrl: https://cdn.kde.org/ci-builds/pim/kalarm/master/windows/kalarm-master-2811-windows-cl-msvc2022-x86_64.exe - InstallerSha256: 2F199846D30135A731381C8A1122BC8CE749AC81F6B52B311B3BA310A321F859 + InstallerUrl: https://cdn.kde.org/ci-builds/pim/kalarm/master/windows/kalarm-master-2825-windows-cl-msvc2022-x86_64.exe + InstallerSha256: C77628B305804FAEBFE4350B8992B6405F3E6BC696BB4ADF92C17164CA326CBE InstallerSwitches: Custom: /AllUsers ManifestType: installer diff --git a/manifests/k/Kensington/FingerprintApplication/1.0.0.12/Kensington.FingerprintApplication.installer.yaml b/manifests/k/Kensington/FingerprintApplication/1.0.0.12/Kensington.FingerprintApplication.installer.yaml new file mode 100644 index 0000000000000..0b3716e406cc9 --- /dev/null +++ b/manifests/k/Kensington/FingerprintApplication/1.0.0.12/Kensington.FingerprintApplication.installer.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Kensington.FingerprintApplication +PackageVersion: 1.0.0.12 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: KensingtonFingerprintApplication.exe + PortableCommandAlias: kensingtonfingerprintapplication +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x86 + InstallerUrl: https://accoblobstorageus.blob.core.windows.net/software/363bcb38-6b7d-43f5-b5b7-3ddc11991136.zip + InstallerSha256: 481EBE460142068627020112DB705A812A34D18CCC5594993646F177F044CD1B +Dependencies: + WindowsFeatures: + - NetFx3 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/k/Kensington/FingerprintApplication/1.0.0.12/Kensington.FingerprintApplication.locale.en-US.yaml b/manifests/k/Kensington/FingerprintApplication/1.0.0.12/Kensington.FingerprintApplication.locale.en-US.yaml new file mode 100644 index 0000000000000..2d3b34ab2bca5 --- /dev/null +++ b/manifests/k/Kensington/FingerprintApplication/1.0.0.12/Kensington.FingerprintApplication.locale.en-US.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Kensington.FingerprintApplication +PackageVersion: 1.0.0.12 +PackageLocale: en-US +Publisher: Kensington Computer Products Group +PackageName: Kensington Fingerprint Application +PackageUrl: https://customer.kensington.com/us/us/3693/software-drivers +License: Proprietary +ShortDescription: Tools and drivers for Kensington VeriMark fingerprint login devices. +Tags: +- verimark +- windowshello +- biometric +- 2fa +- login +- logon +- driver +- synawudfbiousbkensprod.inf +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/k/Kensington/FingerprintApplication/1.0.0.12/Kensington.FingerprintApplication.yaml b/manifests/k/Kensington/FingerprintApplication/1.0.0.12/Kensington.FingerprintApplication.yaml new file mode 100644 index 0000000000000..391214f881607 --- /dev/null +++ b/manifests/k/Kensington/FingerprintApplication/1.0.0.12/Kensington.FingerprintApplication.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Kensington.FingerprintApplication +PackageVersion: 1.0.0.12 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/k/KiCad/KiCad/9.0.3/KiCad.KiCad.installer.yaml b/manifests/k/KiCad/KiCad/9.0.3/KiCad.KiCad.installer.yaml new file mode 100644 index 0000000000000..c8d03cedf5ea8 --- /dev/null +++ b/manifests/k/KiCad/KiCad/9.0.3/KiCad.KiCad.installer.yaml @@ -0,0 +1,45 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: KiCad.KiCad +PackageVersion: 9.0.3 +InstallerType: nullsoft +UpgradeBehavior: install +FileExtensions: +- kicad_pcb +- kicad_pro +- kicad_sch +- kicad_wks +- pro +- sch +ProductCode: KiCad 8.0 +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/KiCad/kicad-source-mirror/releases/download/9.0.3/kicad-9.0.3-x86_64.exe + InstallerSha256: 582635CED8552C07E043CE9F2EBA01DC0C42C96DCB87CE12BA85DB1530DA593F + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/KiCad/kicad-source-mirror/releases/download/9.0.3/kicad-9.0.3-x86_64.exe + InstallerSha256: 582635CED8552C07E043CE9F2EBA01DC0C42C96DCB87CE12BA85DB1530DA593F + InstallerSwitches: + Custom: /allusers + ElevationRequirement: elevationRequired +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/KiCad/kicad-source-mirror/releases/download/9.0.3/kicad-9.0.3-arm64.exe + InstallerSha256: E677A6FFFC0B367F7C6C112215B587626E96A3FF49C8DE8CAA09583508688FA5 + InstallerSwitches: + Custom: /currentuser +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/KiCad/kicad-source-mirror/releases/download/9.0.3/kicad-9.0.3-arm64.exe + InstallerSha256: E677A6FFFC0B367F7C6C112215B587626E96A3FF49C8DE8CAA09583508688FA5 + InstallerSwitches: + Custom: /allusers + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/k/KiCad/KiCad/9.0.3/KiCad.KiCad.locale.en-US.yaml b/manifests/k/KiCad/KiCad/9.0.3/KiCad.KiCad.locale.en-US.yaml new file mode 100644 index 0000000000000..7c8d6331c5d77 --- /dev/null +++ b/manifests/k/KiCad/KiCad/9.0.3/KiCad.KiCad.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.10.0.schema.json + +PackageIdentifier: KiCad.KiCad +PackageVersion: 9.0.3 +PackageLocale: en-US +Publisher: KiCad +PublisherUrl: https://www.kicad.org/ +PublisherSupportUrl: https://www.kicad.org/help/ +PackageName: KiCad +PackageUrl: https://www.kicad.org/download/windows/ +License: GPL-3.0 +LicenseUrl: https://www.kicad.org/about/licenses/ +Copyright: (C) 1992-2024 KiCad Developers Team +ShortDescription: A Cross Platform and Open Source Electronics Design Automation Suite +Description: KiCad is a free software suite for electronic design automation. It facilitates the design of schematics for electronic circuits and their conversion to PCB designs. +Moniker: kicad +Tags: +- cad +- eda +- pcb +ReleaseNotes: The KiCad project is proud to announce the version 9.0.3 bug fix release. The 9.0.3 stable version contains critical bug fixes and other minor improvements since the previous release. +ReleaseNotesUrl: https://www.kicad.org/blog/2025/07/KiCad-9.0.3-Release/ +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://docs.kicad.org/9.0/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/k/KiCad/KiCad/9.0.3/KiCad.KiCad.locale.zh-CN.yaml b/manifests/k/KiCad/KiCad/9.0.3/KiCad.KiCad.locale.zh-CN.yaml new file mode 100644 index 0000000000000..d8249e54730a2 --- /dev/null +++ b/manifests/k/KiCad/KiCad/9.0.3/KiCad.KiCad.locale.zh-CN.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: KiCad.KiCad +PackageVersion: 9.0.3 +PackageLocale: zh-CN +Publisher: KiCad +PublisherUrl: https://www.kicad.org/ +PublisherSupportUrl: https://www.kicad.org/help/ +PackageName: KiCad +PackageUrl: https://www.kicad.org/download/windows/ +License: GPL-3.0 +LicenseUrl: https://www.kicad.org/about/licenses/ +Copyright: (C) 1992-2024 KiCad Developers Team +ShortDescription: 跨平台开源电子设计自动化套件 +Description: KiCad 是一套免费的电子设计自动化软件,帮助设计电子电路原理图并将其转换为 PCB 设计。 +Tags: +- cad +- eda +- pcb +ReleaseNotesUrl: https://www.kicad.org/blog/2025/07/KiCad-9.0.3-Release/ +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.kicad.org/9.0/zh/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/k/KiCad/KiCad/9.0.3/KiCad.KiCad.yaml b/manifests/k/KiCad/KiCad/9.0.3/KiCad.KiCad.yaml new file mode 100644 index 0000000000000..58b622117850c --- /dev/null +++ b/manifests/k/KiCad/KiCad/9.0.3/KiCad.KiCad.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: KiCad.KiCad +PackageVersion: 9.0.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/k/Kubernetes/aws-iam-authenticator/0.7.4/Kubernetes.aws-iam-authenticator.installer.yaml b/manifests/k/Kubernetes/aws-iam-authenticator/0.7.4/Kubernetes.aws-iam-authenticator.installer.yaml new file mode 100644 index 0000000000000..cadfe44489081 --- /dev/null +++ b/manifests/k/Kubernetes/aws-iam-authenticator/0.7.4/Kubernetes.aws-iam-authenticator.installer.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Kubernetes.aws-iam-authenticator +PackageVersion: 0.7.4 +InstallerType: portable +Commands: +- aws-iam-authenticator +ReleaseDate: 2025-07-07 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/kubernetes-sigs/aws-iam-authenticator/releases/download/v0.7.4/aws-iam-authenticator_0.7.4_windows_amd64.exe + InstallerSha256: F29568B436623EDF4AC7646DDDC5CD3EDCDBD037363273D14D8F44050BBBA481 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/k/Kubernetes/aws-iam-authenticator/0.7.4/Kubernetes.aws-iam-authenticator.locale.en-US.yaml b/manifests/k/Kubernetes/aws-iam-authenticator/0.7.4/Kubernetes.aws-iam-authenticator.locale.en-US.yaml new file mode 100644 index 0000000000000..1d903312bd4e6 --- /dev/null +++ b/manifests/k/Kubernetes/aws-iam-authenticator/0.7.4/Kubernetes.aws-iam-authenticator.locale.en-US.yaml @@ -0,0 +1,39 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Kubernetes.aws-iam-authenticator +PackageVersion: 0.7.4 +PackageLocale: en-US +Publisher: Kubernetes SIGs +PublisherUrl: https://kubernetes.io/ +PublisherSupportUrl: https://github.com/kubernetes-sigs/aws-iam-authenticator/issues +PackageName: AWS IAM Authenticator +PackageUrl: https://github.com/kubernetes-sigs/aws-iam-authenticator +License: Apache-2.0 +LicenseUrl: https://github.com/kubernetes-sigs/aws-iam-authenticator/blob/HEAD/LICENSE +Copyright: Copyright 2024 The Kubernetes Authors. +ShortDescription: A tool to use AWS IAM credentials to authenticate to a Kubernetes cluster +Tags: +- cluster +- docker +- k8s +- kubernetes +ReleaseNotes: |- + Changelog + - fc048bb8853736441586644fa8553b5fe4992082 Merge pull request #883 from haoranleo/release-0.7.4 + - c2ee2ce5900c42c99edb3163381a9d2118e2440f Release 0.7.4 + - 586a7b0af5ac0b4f230ac0481833eb84ebd87e10 Merge pull request #878 from kubernetes-sigs/dependabot/go_modules/k8s-dependencies-b95b25f231 + - f573965f45195fe30f2f8ccc25ab6becfd7b0293 Bump the k8s-dependencies group across 3 directories with 1 update + - 3d9cf7bd406ba1b1aca8c33dd1a35856117e216a Merge pull request #880 from kubernetes-sigs/dependabot/go_modules/aws-dependencies-81c3d7f24f + - cfc41f6330ba650eaaa9fa427862066f02611b31 Bump the aws-dependencies group across 2 directories with 1 update + - 604188f354f1e4e8f899d8e58427f1ff24e6cd9c Merge pull request #874 from kubernetes-sigs/dependabot/go_modules/misc-dependencies-c5e1b5fbac + - ea92044d74d6c8d926d65725035f433557dadc6f Bump the misc-dependencies group across 3 directories with 18 updates + - 10fc5640b83caa49a402b695f19a753920129c12 Merge pull request #873 from bryantbiggs/chore/dep-group + - a79878361c0056cc7d1d14f8e15b98baeeac7eb3 Merge pull request #872 from kubernetes-sigs/dependabot/go_modules/aws-dependencies-22efba4891 + - 6b8645c2ddf8269f4f4b97f0485ac37b69e716fe Merge pull request #871 from kubernetes-sigs/dependabot/go_modules/k8s-dependencies-415926cf23 + - e19c0e46aeabd7a30ab6f2cc13b73120a7ec41f4 chore: Move observability dependencies to separate dependabot update group + - 0a2e4bddeec94dc42d76be57a8f266c2ff146a24 Bump the aws-dependencies group across 2 directories with 12 updates + - 8bf7cde42fa2924d14a226cf399122f46c0231c3 Bump the k8s-dependencies group across 3 directories with 8 updates +ReleaseNotesUrl: https://github.com/kubernetes-sigs/aws-iam-authenticator/releases/tag/v0.7.4 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/k/Kubernetes/aws-iam-authenticator/0.7.4/Kubernetes.aws-iam-authenticator.locale.zh-CN.yaml b/manifests/k/Kubernetes/aws-iam-authenticator/0.7.4/Kubernetes.aws-iam-authenticator.locale.zh-CN.yaml new file mode 100644 index 0000000000000..27a784c0cb120 --- /dev/null +++ b/manifests/k/Kubernetes/aws-iam-authenticator/0.7.4/Kubernetes.aws-iam-authenticator.locale.zh-CN.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Kubernetes.aws-iam-authenticator +PackageVersion: 0.7.4 +PackageLocale: zh-CN +PublisherUrl: https://kubernetes.io/zh-cn/ +ShortDescription: 一款使用 AWS IAM 凭据验证 Kubernetes 集群的工具 +Tags: +- docker +- k8s +- kubernetes +- 集群 +ReleaseNotesUrl: https://github.com/kubernetes-sigs/aws-iam-authenticator/releases/tag/v0.7.4 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/k/Kubernetes/aws-iam-authenticator/0.7.4/Kubernetes.aws-iam-authenticator.yaml b/manifests/k/Kubernetes/aws-iam-authenticator/0.7.4/Kubernetes.aws-iam-authenticator.yaml new file mode 100644 index 0000000000000..2d2e00a2bf28e --- /dev/null +++ b/manifests/k/Kubernetes/aws-iam-authenticator/0.7.4/Kubernetes.aws-iam-authenticator.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Kubernetes.aws-iam-authenticator +PackageVersion: 0.7.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/l/Levminer/Authme/6.1.2/Levminer.Authme.installer.yaml b/manifests/l/Levminer/Authme/6.1.2/Levminer.Authme.installer.yaml new file mode 100644 index 0000000000000..45a1846b9fd54 --- /dev/null +++ b/manifests/l/Levminer/Authme/6.1.2/Levminer.Authme.installer.yaml @@ -0,0 +1,28 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Levminer.Authme +PackageVersion: 6.1.2 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +UpgradeBehavior: install +ProductCode: '{0800CBF0-E9F2-4F5C-AC4F-2E6124F6D62E}' +ReleaseDate: 2025-07-08 +AppsAndFeaturesEntries: +- Publisher: Levminer + ProductCode: '{0800CBF0-E9F2-4F5C-AC4F-2E6124F6D62E}' + UpgradeCode: '{08BAF346-F99A-505E-99DF-4EC2D88F0CEF}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Authme' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Levminer/authme/releases/download/6.1.2/authme-6.1.2-windows-x64.msi + InstallerSha256: 167D4F742DE720783940D230F352096E37C4D3D93241EF2E82EEECD88DFCC0B6 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/l/Levminer/Authme/6.1.2/Levminer.Authme.locale.en-US.yaml b/manifests/l/Levminer/Authme/6.1.2/Levminer.Authme.locale.en-US.yaml new file mode 100644 index 0000000000000..c3c272b23e0ad --- /dev/null +++ b/manifests/l/Levminer/Authme/6.1.2/Levminer.Authme.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Levminer.Authme +PackageVersion: 6.1.2 +PackageLocale: en-US +Publisher: levminer +PublisherUrl: https://authme.levminer.com/ +PublisherSupportUrl: https://github.com/Levminer/authme/issues +Author: Levminer +PackageName: Authme +PackageUrl: https://authme.levminer.com/ +License: GPL-3.0 +LicenseUrl: https://github.com/Levminer/authme/blob/HEAD/LICENSE.md +Copyright: Copyright (C) 2007 Free Software Foundation, Inc. +CopyrightUrl: https://github.com/Levminer/authme/blob/HEAD/LICENSE.md +ShortDescription: Simple cross platform two-factor authentication app. +Description: Authme is a two-factor authentication app, you can import from QR codes or Google Authenticator QR codes. +Tags: +- 2fa +- 2fa-client +- 2fa-security +- protection +- safety +- security +ReleaseNotes: |- + Authme 6.1.1 + - 2025.07.08. (Standard update) + Improvement + - Warn if WebView2 is not installed + - Updated Tauri and other packages + - Improved HTML export + Bug + - Correctly decode 2FA names +ReleaseNotesUrl: https://github.com/Levminer/authme/releases/tag/6.1.2 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/l/Levminer/Authme/6.1.2/Levminer.Authme.yaml b/manifests/l/Levminer/Authme/6.1.2/Levminer.Authme.yaml new file mode 100644 index 0000000000000..c61a833d25b65 --- /dev/null +++ b/manifests/l/Levminer/Authme/6.1.2/Levminer.Authme.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Levminer.Authme +PackageVersion: 6.1.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/l/LobeHub/LobeHub/1.97.0/LobeHub.LobeHub.installer.yaml b/manifests/l/LobeHub/LobeHub/1.97.0/LobeHub.LobeHub.installer.yaml new file mode 100644 index 0000000000000..881735dce7dc4 --- /dev/null +++ b/manifests/l/LobeHub/LobeHub/1.97.0/LobeHub.LobeHub.installer.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: LobeHub.LobeHub +PackageVersion: 1.97.0 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 2076975c-e569-5439-b1ad-ecff760e8dd0 +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/lobehub/lobe-chat/releases/download/v1.97.0/LobeHub-Beta-1.97.0-setup.exe + InstallerSha256: 96B86056B36F355CB6B765BCE23323CE761A1D07A4B8CEEC52AE1FC25940D9ED + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/lobehub/lobe-chat/releases/download/v1.97.0/LobeHub-Beta-1.97.0-setup.exe + InstallerSha256: 96B86056B36F355CB6B765BCE23323CE761A1D07A4B8CEEC52AE1FC25940D9ED + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/l/LobeHub/LobeHub/1.97.0/LobeHub.LobeHub.locale.en-US.yaml b/manifests/l/LobeHub/LobeHub/1.97.0/LobeHub.LobeHub.locale.en-US.yaml new file mode 100644 index 0000000000000..adddaca1e4759 --- /dev/null +++ b/manifests/l/LobeHub/LobeHub/1.97.0/LobeHub.LobeHub.locale.en-US.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: LobeHub.LobeHub +PackageVersion: 1.97.0 +PackageLocale: en-US +Publisher: LobeHub +PublisherUrl: https://lobehub.com/ +PublisherSupportUrl: https://github.com/lobehub/lobe-chat/issues +PrivacyUrl: https://lobehub.com/privacy +Author: LobeHub LLC +PackageName: LobeHub-Beta +PackageUrl: https://github.com/lobehub/lobe-chat +License: Apache-2.0 +LicenseUrl: https://github.com/lobehub/lobe-chat/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024/06/17 - current LobeHub LLC. All rights reserved. +CopyrightUrl: https://lobehub.com/terms +ShortDescription: An open-source, modern-design AI chat framework. Supports Multi AI Providers (OpenAI / Claude 4 / Gemini / Ollama / DeepSeek / Qwen), Knowledge Base (file upload / knowledge management / RAG), Multi-Modals (Plugins/Artifacts) and Thinking. +Tags: +- ai +- chatbot +- chatgpt +- claude +- deepseek +- doubao +- gemini +- kimi +- large-language-model +- llama +- llm +- mistral +- ollama +- qwen +- rag +ReleaseNotesUrl: https://github.com/lobehub/lobe-chat/releases/tag/v1.97.0 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://lobehub.com/docs/usage/start +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/l/LobeHub/LobeHub/1.97.0/LobeHub.LobeHub.locale.zh-CN.yaml b/manifests/l/LobeHub/LobeHub/1.97.0/LobeHub.LobeHub.locale.zh-CN.yaml new file mode 100644 index 0000000000000..663fb9539c4ac --- /dev/null +++ b/manifests/l/LobeHub/LobeHub/1.97.0/LobeHub.LobeHub.locale.zh-CN.yaml @@ -0,0 +1,30 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: LobeHub.LobeHub +PackageVersion: 1.97.0 +PackageLocale: zh-CN +ShortDescription: 一个开源、现代化设计的 AI聊天框架。支持多 AI 供应商(OpenAI/Claude 4/Gemini/Ollama/DeepSeek/Qwen)、知识库(文件上传/知识管理/RAG)、多模态(插件/工件)及思维链功能。 +Tags: +- ai +- chatgpt +- claude +- deepseek +- gemini +- kimi +- llama +- llm +- mistral +- ollama +- rag +- 人工智能 +- 大语言模型 +- 聊天机器人 +- 豆包 +- 通义千问 +ReleaseNotesUrl: https://github.com/lobehub/lobe-chat/releases/tag/v1.97.0 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://lobehub.com/docs/usage/start +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/l/LobeHub/LobeHub/1.97.0/LobeHub.LobeHub.yaml b/manifests/l/LobeHub/LobeHub/1.97.0/LobeHub.LobeHub.yaml new file mode 100644 index 0000000000000..d39d847f85d3c --- /dev/null +++ b/manifests/l/LobeHub/LobeHub/1.97.0/LobeHub.LobeHub.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: LobeHub.LobeHub +PackageVersion: 1.97.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Makeblock/xToolCreativeSpace/2.7.22/Makeblock.xToolCreativeSpace.installer.yaml b/manifests/m/Makeblock/xToolCreativeSpace/2.7.22/Makeblock.xToolCreativeSpace.installer.yaml new file mode 100644 index 0000000000000..273f033024008 --- /dev/null +++ b/manifests/m/Makeblock/xToolCreativeSpace/2.7.22/Makeblock.xToolCreativeSpace.installer.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=QUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Makeblock.xToolCreativeSpace +PackageVersion: 2.7.22 +InstallerType: nullsoft # electron-builder +Scope: machine +InstallerSwitches: + Upgrade: --updated +Protocols: +- xcsapp +FileExtensions: +- xcs +ProductCode: b29304a7-41e3-5b24-bd90-477136b06003 +ReleaseDate: 2025-06-20 +Installers: +- Architecture: x64 + InstallerUrl: https://storage-us.atomm.com/resource/efficacy/xcs/prod-us/packages/15/acc9990c-d436-483c-89bf-d9749831be1f/xTool-Creative-Space-2.7.22-2025-06-19-11-01-27.exe + InstallerSha256: 6CD17873B10B62D1D00001C724251E5F58123964B2EC5060AD389CA72389AC9A +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Makeblock/xToolCreativeSpace/2.7.22/Makeblock.xToolCreativeSpace.locale.en-US.yaml b/manifests/m/Makeblock/xToolCreativeSpace/2.7.22/Makeblock.xToolCreativeSpace.locale.en-US.yaml new file mode 100644 index 0000000000000..83ea158eb8fbc --- /dev/null +++ b/manifests/m/Makeblock/xToolCreativeSpace/2.7.22/Makeblock.xToolCreativeSpace.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=QUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Makeblock.xToolCreativeSpace +PackageVersion: 2.7.22 +PackageLocale: en-US +Publisher: Makeblock +PublisherUrl: https://www.xtool.com/ +PublisherSupportUrl: https://support.xtool.com/ +PrivacyUrl: https://passport.xtool.com/policy.html +Author: XTL US INC. +PackageName: xTool Creative Space +PackageUrl: https://www.xtool.com/pages/software +License: Proprietary +LicenseUrl: https://passport.xtool.com/terms.html +Copyright: Copyright © 2024 - 2025 XTL US INC. All rights reserved. +CopyrightUrl: https://passport.xtool.com/terms.html +ShortDescription: Designer & management software for xTool laser cutters & engravers. +# Description: +# Moniker: +Tags: +- laser +- laser-cutting +- laser-engraving +ReleaseNotes: |- + 1. Added support for official consumables QR code recognition + 2. Introduced the AI Assistant feature + 3. Optimized certain features for the xTool MetalFab CNC Cutter、xTool Apparel Printer + 4. Enhanced user experience with the M1 Ultra Electrostatic mat + 5. Fixed some known bugs +ReleaseNotesUrl: https://support.xtool.com/article/1773 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Makeblock/xToolCreativeSpace/2.7.22/Makeblock.xToolCreativeSpace.locale.zh-CN.yaml b/manifests/m/Makeblock/xToolCreativeSpace/2.7.22/Makeblock.xToolCreativeSpace.locale.zh-CN.yaml new file mode 100644 index 0000000000000..1914c4f7213df --- /dev/null +++ b/manifests/m/Makeblock/xToolCreativeSpace/2.7.22/Makeblock.xToolCreativeSpace.locale.zh-CN.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=QUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Makeblock.xToolCreativeSpace +PackageVersion: 2.7.22 +PackageLocale: zh-CN +# Publisher: +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +# PackageName: +# PackageUrl: +License: 专有软件 +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: xTool 激光切割雕刻机设计与管理系统软件 +# Description: +# Moniker: +Tags: +- 激光 +- 激光切割 +- 激光雕刻 +ReleaseNotes: |- + 1. 新增支持官方耗材二维码识别功能 + 2. 新增 AI 助手功能 + 3. 优化了 xTool MetalFab CNC Cutter、xTool Apparel Printer 部分功能 + 4. 优化 M1 ultra 静电吸附板使用体验 + 5. 修复了部分已知 bug +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Makeblock/xToolCreativeSpace/2.7.22/Makeblock.xToolCreativeSpace.yaml b/manifests/m/Makeblock/xToolCreativeSpace/2.7.22/Makeblock.xToolCreativeSpace.yaml new file mode 100644 index 0000000000000..5153f357ace1e --- /dev/null +++ b/manifests/m/Makeblock/xToolCreativeSpace/2.7.22/Makeblock.xToolCreativeSpace.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=QUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Makeblock.xToolCreativeSpace +PackageVersion: 2.7.22 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/MegaDev/PLITCH/2.12.1/MegaDev.PLITCH.installer.yaml b/manifests/m/MegaDev/PLITCH/2.12.1/MegaDev.PLITCH.installer.yaml new file mode 100644 index 0000000000000..4fd3fca963b7d --- /dev/null +++ b/manifests/m/MegaDev/PLITCH/2.12.1/MegaDev.PLITCH.installer.yaml @@ -0,0 +1,40 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: MegaDev.PLITCH +PackageVersion: 2.12.1 +InstallerLocale: en-US +InstallerType: inno +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Protocols: +- plitch +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.EdgeWebView2Runtime + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ProductCode: '{3248AA2D-83C9-4761-AEA0-D2F64D6517C3}_is1' +ReleaseDate: 2025-07-07 +AppsAndFeaturesEntries: +- ProductCode: '{3248AA2D-83C9-4761-AEA0-D2F64D6517C3}_is1' +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://cdn.plitch.com/auto-updater/PLITCH_Setup_2.12.1.exe + InstallerSha256: 1FFC199229DFD11063761351707340782FE68A76396D914306A809F845B2A041 + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://cdn.plitch.com/auto-updater/PLITCH_Setup_2.12.1.exe + InstallerSha256: 1FFC199229DFD11063761351707340782FE68A76396D914306A809F845B2A041 + InstallerSwitches: + Custom: /ALLUSERS + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\PLITCH' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/MegaDev/PLITCH/2.12.1/MegaDev.PLITCH.locale.en-US.yaml b/manifests/m/MegaDev/PLITCH/2.12.1/MegaDev.PLITCH.locale.en-US.yaml new file mode 100644 index 0000000000000..36f76be119aa0 --- /dev/null +++ b/manifests/m/MegaDev/PLITCH/2.12.1/MegaDev.PLITCH.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: MegaDev.PLITCH +PackageVersion: 2.12.1 +PackageLocale: en-US +Publisher: MegaDev GmbH +PublisherUrl: https://www.megadev.com/ +Author: MegaDev GmbH +PackageName: PLITCH +PackageUrl: https://www.plitch.com/en +License: Proprietary +Copyright: Copyright (c) MegaDev GmbH +ShortDescription: PLITCH is a customization platform for single-player PC games, offering safe and legal in-game adjustments like cheats, mods, and training tools. Whether you want a challenge or a more relaxed experience, PLITCH helps you play your way. +Description: |- + PLITCH is the ultimate customization platform for single-player PC games, designed to give you full control over your gaming experience. With over 4,000 supported titles and more than 60,000 individual customization options, PLITCH offers safe, legal, and ad-free in-game adjustments – from simple quality-of-life tweaks to powerful training tools and cheats. Whether you're looking to overcome a difficult boss, experiment with creative builds, or simply relax with unlimited resources, PLITCH has a solution for every kind of player. + + Our platform is created and maintained by passionate gamers and is backed by a dedicated development team that ensures all content remains up-to-date and compatible with the latest game versions. PLITCH is not just a tool – it’s a companion for gamers who want to play on their own terms, enhance their skills, or explore games in new ways without compromising their system’s safety or game integrity. + + PLITCH is free to download and easy to use, with optional Premium features that unlock even more advanced customizations. Whether you're in it for the challenge or the freedom, PLITCH empowers you to change the way you play. +Moniker: plitch +Tags: +- gaming +- megadev +- modding +- plitch +- singleplayer +- trainer +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/MegaDev/PLITCH/2.12.1/MegaDev.PLITCH.locale.zh-CN.yaml b/manifests/m/MegaDev/PLITCH/2.12.1/MegaDev.PLITCH.locale.zh-CN.yaml new file mode 100644 index 0000000000000..8efbe9dd36885 --- /dev/null +++ b/manifests/m/MegaDev/PLITCH/2.12.1/MegaDev.PLITCH.locale.zh-CN.yaml @@ -0,0 +1,29 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: MegaDev.PLITCH +PackageVersion: 2.12.1 +PackageLocale: zh-CN +Publisher: MegaDev GmbH +PublisherUrl: https://www.megadev.com/ +Author: MegaDev GmbH +PackageName: PLITCH +PackageUrl: https://www.plitch.com/zh +License: Proprietary +Copyright: Copyright (c) MegaDev GmbH +ShortDescription: PLITCH 是一款专为单人 PC 游戏设计的定制化平台,提供安全合法的游戏内调整功能,包括作弊码、模组和训练工具。无论您是追求挑战还是渴望更轻松的游戏体验,PLITCH 都能助您随心畅玩。 +Description: |- + PLITCH 是专为单人 PC 游戏设计的终极定制平台,旨在让您完全掌控游戏体验。凭借支持数千款游戏和个性化定制选项,PLITCH 提供安全、合法且无广告的游戏内调整功能——从简单的游戏体验优化到强大的训练工具和作弊码。无论您是想击败困难的 boss、尝试创意build,还是单纯想在无限资源中放松,PLITCH 都能为各类玩家提供解决方案。 + + 我们的平台由一群热衷游戏的玩家创建并维护,背后有一支专业的开发团队确保所有内容始终保持最新并兼容最新游戏版本。PLITCH 不仅仅是一个工具——它是玩家的得力伙伴,让玩家能够按照自己的方式畅玩游戏、提升技能,或以全新方式探索游戏,同时无需担心系统安全或游戏完整性受到影响。 + + PLITCH 提供免费下载且操作简便,同时支持可选的 Premium 功能,解锁更多高级自定义选项。无论您是追求挑战还是渴望自由,PLITCH 都能助您改变游戏方式。 +Tags: +- 游戏 +- megadev +- 模组制作 +- plitch +- 单人游戏 +- 游戏训练师 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/MegaDev/PLITCH/2.12.1/MegaDev.PLITCH.yaml b/manifests/m/MegaDev/PLITCH/2.12.1/MegaDev.PLITCH.yaml new file mode 100644 index 0000000000000..ca42478ad8d77 --- /dev/null +++ b/manifests/m/MegaDev/PLITCH/2.12.1/MegaDev.PLITCH.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: MegaDev.PLITCH +PackageVersion: 2.12.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Micronaut/Launch/4.9.1/Micronaut.Launch.installer.yaml b/manifests/m/Micronaut/Launch/4.9.1/Micronaut.Launch.installer.yaml new file mode 100644 index 0000000000000..bd20b2e3821cc --- /dev/null +++ b/manifests/m/Micronaut/Launch/4.9.1/Micronaut.Launch.installer.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Micronaut.Launch +PackageVersion: 4.9.1 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: mn-win-amd64-v4.9.1/bin/mn.exe +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/micronaut-projects/micronaut-starter/releases/download/v4.9.1/mn-win-amd64-v4.9.1.zip + InstallerSha256: 8C73F1F244D7C560C07E4559168C9516F01B126D654B60BED56165F409F04FEC +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Micronaut/Launch/4.9.1/Micronaut.Launch.locale.en-US.yaml b/manifests/m/Micronaut/Launch/4.9.1/Micronaut.Launch.locale.en-US.yaml new file mode 100644 index 0000000000000..b32731d893691 --- /dev/null +++ b/manifests/m/Micronaut/Launch/4.9.1/Micronaut.Launch.locale.en-US.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Micronaut.Launch +PackageVersion: 4.9.1 +PackageLocale: en-US +Publisher: Micronaut Foundation +PublisherUrl: https://micronaut.io/ +PublisherSupportUrl: https://github.com/micronaut-projects/micronaut-starter/issues +PackageName: Micronaut Launch +PackageUrl: https://github.com/micronaut-projects/micronaut-starter +License: Apache-2.0 +LicenseUrl: https://github.com/micronaut-projects/micronaut-starter/blob/HEAD/LICENSE +ShortDescription: Micronaut - A modern, JVM-based (Java, Groovy, Kotlin), full-stack framework for building modular and testable microservice and serverless applications +Moniker: micronaut +ReleaseNotes: |- + Micronaut Platform 4.9.1 + Micronaut Core 4.9.7 + Full Changelog: v4.9.0...v4.9.1 +ReleaseNotesUrl: https://github.com/micronaut-projects/micronaut-starter/releases/tag/v4.9.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Micronaut/Launch/4.9.1/Micronaut.Launch.yaml b/manifests/m/Micronaut/Launch/4.9.1/Micronaut.Launch.yaml new file mode 100644 index 0000000000000..600a71233feab --- /dev/null +++ b/manifests/m/Micronaut/Launch/4.9.1/Micronaut.Launch.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Micronaut.Launch +PackageVersion: 4.9.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/OneDrive/25.110.0608.0002/Microsoft.OneDrive.installer.yaml b/manifests/m/Microsoft/OneDrive/25.110.0608.0002/Microsoft.OneDrive.installer.yaml new file mode 100644 index 0000000000000..ceaa4852244ef --- /dev/null +++ b/manifests/m/Microsoft/OneDrive/25.110.0608.0002/Microsoft.OneDrive.installer.yaml @@ -0,0 +1,57 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Microsoft.OneDrive +PackageVersion: 25.110.0608.0002 +InstallerType: exe +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /silent + SilentWithProgress: /silent + Upgrade: /update +ExpectedReturnCodes: +- InstallerReturnCode: 2147747484 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 2147747483 + ReturnResponse: packageInUse +- InstallerReturnCode: 2147749059 + ReturnResponse: packageInUse +- InstallerReturnCode: 2147747474 + ReturnResponse: downgrade +UpgradeBehavior: install +ProductCode: OneDriveSetup.exe +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://oneclient.sfx.ms/Win/Installers/25.110.0608.0002/OneDriveSetup.exe + InstallerSha256: 61E680FDE68E0343FF8F07DC652BE66EB2BDC18F3444EFAC408AD2D1624B42D0 +- Architecture: x86 + Scope: machine + InstallerUrl: https://oneclient.sfx.ms/Win/Installers/25.110.0608.0002/OneDriveSetup.exe + InstallerSha256: 61E680FDE68E0343FF8F07DC652BE66EB2BDC18F3444EFAC408AD2D1624B42D0 + InstallerSwitches: + Custom: /allusers +- Architecture: x64 + Scope: user + InstallerUrl: https://oneclient.sfx.ms/Win/Installers/25.110.0608.0002/amd64/OneDriveSetup.exe + InstallerSha256: EA40BF6D170012C1F990EC299688F85C0212207DF0196A083768DBD466A15489 +- Architecture: x64 + Scope: machine + InstallerUrl: https://oneclient.sfx.ms/Win/Installers/25.110.0608.0002/amd64/OneDriveSetup.exe + InstallerSha256: EA40BF6D170012C1F990EC299688F85C0212207DF0196A083768DBD466A15489 + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: user + InstallerUrl: https://oneclient.sfx.ms/Win/Installers/25.110.0608.0002/arm64/OneDriveSetup.exe + InstallerSha256: F9A3371EFE7BA31FE3C0DA5A655901EE0F288683F0AAA132013F8275B0350B39 +- Architecture: arm64 + Scope: machine + InstallerUrl: https://oneclient.sfx.ms/Win/Installers/25.110.0608.0002/arm64/OneDriveSetup.exe + InstallerSha256: F9A3371EFE7BA31FE3C0DA5A655901EE0F288683F0AAA132013F8275B0350B39 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/OneDrive/25.110.0608.0002/Microsoft.OneDrive.locale.en-US.yaml b/manifests/m/Microsoft/OneDrive/25.110.0608.0002/Microsoft.OneDrive.locale.en-US.yaml new file mode 100644 index 0000000000000..b84840f9c332c --- /dev/null +++ b/manifests/m/Microsoft/OneDrive/25.110.0608.0002/Microsoft.OneDrive.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Microsoft.OneDrive +PackageVersion: 25.110.0608.0002 +PackageLocale: en-US +Publisher: Microsoft Corporation +PublisherUrl: https://www.microsoft.com/ +PublisherSupportUrl: https://support.microsoft.com/ +PrivacyUrl: https://privacy.microsoft.com/privacystatement +Author: Microsoft Corporation +PackageName: Microsoft OneDrive +PackageUrl: https://www.microsoft.com/microsoft-365/onedrive/download +License: Proprietary +LicenseUrl: https://www.microsoft.com/legal/terms-of-use +Copyright: © 2024 Microsoft Corporation. All rights reserved. +CopyrightUrl: https://www.microsoft.com/legal/intellectualproperty/trademarks +ShortDescription: Keep your files and memories protected, up to date, and easily accessible across all your devices. +Moniker: onedrive +Tags: +- backup +- cloud +- cloud-drive +- download +- drive +- file +- microsoft365 +- netdisk +- o365 +- office +- office365 +- share +- sync +- upload +ReleaseNotesUrl: https://support.microsoft.com/office/onedrive-release-notes-845dcf18-f921-435e-bf28-4e24b95e5fc0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/OneDrive/25.110.0608.0002/Microsoft.OneDrive.locale.zh-CN.yaml b/manifests/m/Microsoft/OneDrive/25.110.0608.0002/Microsoft.OneDrive.locale.zh-CN.yaml new file mode 100644 index 0000000000000..cd4d75c20ac62 --- /dev/null +++ b/manifests/m/Microsoft/OneDrive/25.110.0608.0002/Microsoft.OneDrive.locale.zh-CN.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Microsoft.OneDrive +PackageVersion: 25.110.0608.0002 +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: Microsoft OneDrive +PackageUrl: https://www.microsoft.com/zh-cn/microsoft-365/onedrive/download +License: 专有软件 +LicenseUrl: https://www.microsoft.com/legal/terms-of-use +Copyright: © 2024 Microsoft Corporation。保留所有权利。 +CopyrightUrl: https://www.microsoft.com/legal/intellectualproperty/trademarks +ShortDescription: 保护文件和内存,保持更新,并支持在所有设备上轻松访问。 +Tags: +- microsoft365 +- o365 +- office +- office365 +- 上传 +- 下载 +- 云 +- 云盘 +- 共享 +- 分享 +- 同步 +- 备份 +- 文件 +- 网盘 +ReleaseNotesUrl: https://support.microsoft.com/zh-cn/office/onedrive-发行说明-845dcf18-f921-435e-bf28-4e24b95e5fc0 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/OneDrive/25.110.0608.0002/Microsoft.OneDrive.yaml b/manifests/m/Microsoft/OneDrive/25.110.0608.0002/Microsoft.OneDrive.yaml new file mode 100644 index 0000000000000..5af16dfe864db --- /dev/null +++ b/manifests/m/Microsoft/OneDrive/25.110.0608.0002/Microsoft.OneDrive.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Microsoft.OneDrive +PackageVersion: 25.110.0608.0002 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/PowerToys/0.92.1/Microsoft.PowerToys.installer.yaml b/manifests/m/Microsoft/PowerToys/0.92.1/Microsoft.PowerToys.installer.yaml new file mode 100644 index 0000000000000..e277c14788078 --- /dev/null +++ b/manifests/m/Microsoft/PowerToys/0.92.1/Microsoft.PowerToys.installer.yaml @@ -0,0 +1,35 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.PowerToys +PackageVersion: 0.92.1 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.17134.0 +InstallerType: burn +InstallerSwitches: + Silent: /quiet /norestart + SilentWithProgress: /quiet /norestart +UpgradeBehavior: install +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/microsoft/PowerToys/releases/download/v0.92.1/PowerToysUserSetup-0.92.1-x64.exe + InstallerSha256: 279886E446D96C3816D5D478D0A31F0458E336AFC0FD6D230064F2A72FF14421 +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/microsoft/PowerToys/releases/download/v0.92.1/PowerToysSetup-0.92.1-x64.exe + InstallerSha256: B5B263C259A5EB40D76E564DBDD095BF878593924E61761E8EB70B8351622E62 + ElevationRequirement: elevatesSelf +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/microsoft/PowerToys/releases/download/v0.92.1/PowerToysUserSetup-0.92.1-arm64.exe + InstallerSha256: E7495316BE3CCBB5A684B6806FDFEB8BD5C114B2EA229346DA442ED43050D8F3 +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/microsoft/PowerToys/releases/download/v0.92.1/PowerToysSetup-0.92.1-arm64.exe + InstallerSha256: 6262D2491AD4D7E2429E402F29CB6B1A8FA7412714EF2BEFA2B9B692B3AEF502 + ElevationRequirement: elevatesSelf +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-07-07 diff --git a/manifests/m/Microsoft/PowerToys/0.92.1/Microsoft.PowerToys.locale.en-US.yaml b/manifests/m/Microsoft/PowerToys/0.92.1/Microsoft.PowerToys.locale.en-US.yaml new file mode 100644 index 0000000000000..ad1c872666275 --- /dev/null +++ b/manifests/m/Microsoft/PowerToys/0.92.1/Microsoft.PowerToys.locale.en-US.yaml @@ -0,0 +1,39 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.PowerToys +PackageVersion: 0.92.1 +PackageLocale: en-US +Publisher: Microsoft Corporation +PublisherUrl: https://github.com/microsoft/PowerToys +PublisherSupportUrl: https://github.com/microsoft/PowerToys/issues +PrivacyUrl: https://privacy.microsoft.com/en-us/privacystatement +Author: Microsoft Corporation +PackageName: PowerToys +PackageUrl: https://github.com/microsoft/PowerToys +License: MIT +LicenseUrl: https://github.com/microsoft/PowerToys/blob/master/LICENSE +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +CopyrightUrl: https://github.com/microsoft/PowerToys/blob/main/LICENSE +ShortDescription: Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. +Description: |- + Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. + Inspired by the Windows 95 era PowerToys project, this reboot provides power users with ways to squeeze more efficiency out of the Windows 10 shell and customize it for individual workflows. +Moniker: powertoys +Tags: +- colorpicker +- fancyzones +- fileexplorer +- imageresizer +- keyboardmanager +- power-toys +- powerrename +- powertoys +- powertoys-run +- windows-key-shortcut-guide +ReleaseNotesUrl: https://github.com/microsoft/PowerToys/releases/tag/v0.92.1 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/microsoft/PowerToys/wiki +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/PowerToys/0.92.1/Microsoft.PowerToys.yaml b/manifests/m/Microsoft/PowerToys/0.92.1/Microsoft.PowerToys.yaml new file mode 100644 index 0000000000000..f06f603f36377 --- /dev/null +++ b/manifests/m/Microsoft/PowerToys/0.92.1/Microsoft.PowerToys.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.PowerToys +PackageVersion: 0.92.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/RemoteDesktopClient/1.2.6353.0/Microsoft.RemoteDesktopClient.installer.yaml b/manifests/m/Microsoft/RemoteDesktopClient/1.2.6353.0/Microsoft.RemoteDesktopClient.installer.yaml new file mode 100644 index 0000000000000..b2edb3902e25e --- /dev/null +++ b/manifests/m/Microsoft/RemoteDesktopClient/1.2.6353.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.10.0.schema.json + +PackageIdentifier: Microsoft.RemoteDesktopClient +PackageVersion: 1.2.6353.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/587a9b22-6deb-4dec-aeee-f9e65d1e0096/RemoteDesktop_1.2.6353.0_x86.msi + InstallerSha256: 19F08F415CC7DA1F0CF9CA3B0C7786FFE591526DFDE8A4087251DB61228170E5 + ProductCode: '{4915FF80-67A4-4F7B-A4B6-8715410E9566}' + AppsAndFeaturesEntries: + - ProductCode: '{4915FF80-67A4-4F7B-A4B6-8715410E9566}' + UpgradeCode: '{F35D4E51-0F33-426C-B8A8-3ECF4ADBFC5F}' +- Architecture: x64 + InstallerUrl: https://res.cdn.office.net/remote-desktop-windows-client/19d8ec46-5816-480f-9849-06836b630134/RemoteDesktop_1.2.6353.0_x64.msi + InstallerSha256: 3C38D8ED28023A87664C08C144F0722B0BEB9F0CF9210B67E7B098B5A2727B7A + ProductCode: '{C7AEC84A-58D7-41D3-AC91-E07C8A47A5BB}' + AppsAndFeaturesEntries: + - ProductCode: '{C7AEC84A-58D7-41D3-AC91-E07C8A47A5BB}' + UpgradeCode: '{F35D4E51-0F33-426C-B8A8-3ECF4ADBFC5F}' +- Architecture: arm64 + InstallerUrl: https://res.cdn.office.net/remote-desktop-windows-client/d6aeb8a5-d150-485d-aef2-e0e93ae92ce7/RemoteDesktop_1.2.6353.0_ARM64.msi + InstallerSha256: D2DBE8ACF342CC557F74912E49E5A0F99840BBFD0335C0EBD1E3AD6B8835F693 + ProductCode: '{568FB5CC-1673-43A8-A94B-2803E38BF6CF}' + AppsAndFeaturesEntries: + - ProductCode: '{568FB5CC-1673-43A8-A94B-2803E38BF6CF}' + UpgradeCode: '{F35D4E51-0F33-426C-B8A8-3ECF4ADBFC5F}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/RemoteDesktopClient/1.2.6353.0/Microsoft.RemoteDesktopClient.locale.en-US.yaml b/manifests/m/Microsoft/RemoteDesktopClient/1.2.6353.0/Microsoft.RemoteDesktopClient.locale.en-US.yaml new file mode 100644 index 0000000000000..256f2e7f0de81 --- /dev/null +++ b/manifests/m/Microsoft/RemoteDesktopClient/1.2.6353.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.10.0.schema.json + +PackageIdentifier: Microsoft.RemoteDesktopClient +PackageVersion: 1.2.6353.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.10.0 diff --git a/manifests/m/Microsoft/RemoteDesktopClient/1.2.6353.0/Microsoft.RemoteDesktopClient.locale.zh-CN.yaml b/manifests/m/Microsoft/RemoteDesktopClient/1.2.6353.0/Microsoft.RemoteDesktopClient.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6dfbf9567c1c7 --- /dev/null +++ b/manifests/m/Microsoft/RemoteDesktopClient/1.2.6353.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.10.0.schema.json + +PackageIdentifier: Microsoft.RemoteDesktopClient +PackageVersion: 1.2.6353.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.10.0 diff --git a/manifests/m/Microsoft/RemoteDesktopClient/1.2.6353.0/Microsoft.RemoteDesktopClient.yaml b/manifests/m/Microsoft/RemoteDesktopClient/1.2.6353.0/Microsoft.RemoteDesktopClient.yaml new file mode 100644 index 0000000000000..d351166ad382d --- /dev/null +++ b/manifests/m/Microsoft/RemoteDesktopClient/1.2.6353.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.10.0.schema.json + +PackageIdentifier: Microsoft.RemoteDesktopClient +PackageVersion: 1.2.6353.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/SQLServerManagementStudio/21/21.4.8/Microsoft.SQLServerManagementStudio.21.installer.yaml b/manifests/m/Microsoft/SQLServerManagementStudio/21/21.4.8/Microsoft.SQLServerManagementStudio.21.installer.yaml new file mode 100644 index 0000000000000..cf45e3ab96180 --- /dev/null +++ b/manifests/m/Microsoft/SQLServerManagementStudio/21/21.4.8/Microsoft.SQLServerManagementStudio.21.installer.yaml @@ -0,0 +1,43 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json +PackageIdentifier: Microsoft.SQLServerManagementStudio.21 +PackageVersion: 21.4.8 +MinimumOSVersion: 10.0.0.0 +InstallerLocale: en-US +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: --quiet + SilentWithProgress: --passive + Upgrade: update + Custom: --wait + InstallLocation: --installPath +ExpectedReturnCodes: +- InstallerReturnCode: 1001 + ReturnResponse: installInProgress +- InstallerReturnCode: 1003 + ReturnResponse: fileInUse +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish +- InstallerReturnCode: -1073720687 + ReturnResponse: noNetwork +ElevationRequirement: elevatesSelf +UpgradeBehavior: install +Commands: +- SSMS +FileExtensions: +- SQL +AppsAndFeaturesEntries: +- DisplayVersion: '21.4.8' +Installers: +- Architecture: x64 + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/f55fba7b-3f02-49b7-9aca-a075049a807d/68223c53272acced87437bde86eff72237492d2ec25fb7a826bc2372fd17f3fc/vs_SSMS.exe + InstallerSha256: 68223c53272acced87437bde86eff72237492d2ec25fb7a826bc2372fd17f3fc +ReleaseDate: 2025-07-08 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/SQLServerManagementStudio/21/21.4.8/Microsoft.SQLServerManagementStudio.21.locale.en-US.yaml b/manifests/m/Microsoft/SQLServerManagementStudio/21/21.4.8/Microsoft.SQLServerManagementStudio.21.locale.en-US.yaml new file mode 100644 index 0000000000000..0d453536447d9 --- /dev/null +++ b/manifests/m/Microsoft/SQLServerManagementStudio/21/21.4.8/Microsoft.SQLServerManagementStudio.21.locale.en-US.yaml @@ -0,0 +1,31 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.6.0.schema.json +PackageIdentifier: Microsoft.SQLServerManagementStudio.21 +PackageVersion: 21.4.8 +PackageLocale: en-US +Publisher: Microsoft Corporation +PublisherUrl: https://www.microsoft.com/ +PublisherSupportUrl: https://aka.ms/ssms-feedback/ +PrivacyUrl: https://privacy.microsoft.com/ +Author: Microsoft +PackageName: Microsoft SQL Server Management Studio 21 +PackageUrl: https://learn.microsoft.com/sql/ssms/download-sql-server-management-studio-ssms +License: Microsoft Release Software License +LicenseUrl: https://aka.ms/ssms-license +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +ShortDescription: SQL Server Management Studio (SSMS) is an integrated environment for managing any SQL infrastructure +Description: SQL Server Management Studio (SSMS) is an integrated environment for managing any SQL infrastructure, from SQL Server to Azure SQL Database. SSMS provides tools to configure, monitor, and administer instances of SQL Server and databases. Use SSMS to deploy, monitor, and upgrade the data-tier components used by your applications, and build queries and scripts. +Moniker: ssms +Tags: +- management-studio +- sql +- sql-management-studio +- sql-server +- ssms +# Agreements: +# ReleaseNotes: +ReleaseNotesUrl: https://aka.ms/SSMSReleaseNotes-21#2148 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.6.0 \ No newline at end of file diff --git a/manifests/m/Microsoft/SQLServerManagementStudio/21/21.4.8/Microsoft.SQLServerManagementStudio.21.yaml b/manifests/m/Microsoft/SQLServerManagementStudio/21/21.4.8/Microsoft.SQLServerManagementStudio.21.yaml new file mode 100644 index 0000000000000..3819851dee650 --- /dev/null +++ b/manifests/m/Microsoft/SQLServerManagementStudio/21/21.4.8/Microsoft.SQLServerManagementStudio.21.yaml @@ -0,0 +1,6 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json +PackageIdentifier: Microsoft.SQLServerManagementStudio.21 +PackageVersion: 21.4.8 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 \ No newline at end of file diff --git a/manifests/m/Microsoft/VisualStudio/2019/BuildTools/16.11.49/Microsoft.VisualStudio.2019.BuildTools.installer.yaml b/manifests/m/Microsoft/VisualStudio/2019/BuildTools/16.11.49/Microsoft.VisualStudio.2019.BuildTools.installer.yaml new file mode 100644 index 0000000000000..31b5d6b335990 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2019/BuildTools/16.11.49/Microsoft.VisualStudio.2019.BuildTools.installer.yaml @@ -0,0 +1,92 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2019.BuildTools +PackageVersion: 16.11.49 +InstallerSwitches: + Silent: --quiet + SilentWithProgress: --passive + Upgrade: update + Custom: --wait +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 +Installers: +- MinimumOSVersion: 10.0.0.0 + Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/12569159-fcaa-4029-a83e-b7b900c5f9d6/975e1c29210af0394c455aa413940f28249d295cf44c882ad98b5a6226219993/vs_BuildTools.exe + InstallerSha256: 975e1c29210af0394c455aa413940f28249d295cf44c882ad98b5a6226219993 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/VisualStudio/2019/BuildTools/16.11.49/Microsoft.VisualStudio.2019.BuildTools.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudio/2019/BuildTools/16.11.49/Microsoft.VisualStudio.2019.BuildTools.locale.en-US.yaml new file mode 100644 index 0000000000000..dbb0e294b1f1c --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2019/BuildTools/16.11.49/Microsoft.VisualStudio.2019.BuildTools.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2019.BuildTools +PackageVersion: 16.11.49 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Visual Studio BuildTools 2019 +PackageUrl: https://visualstudio.microsoft.com/ +License: Proprietary +LicenseUrl: https://visualstudio.microsoft.com/license-terms/ +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +ShortDescription: An integrated, end-to-end solution for developers looking for high productivity and seamless coordination across teams of any size. +Moniker: vs2019-buildtools +Tags: +- c# +- c++ +- vs +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/VisualStudio/2019/BuildTools/16.11.49/Microsoft.VisualStudio.2019.BuildTools.yaml b/manifests/m/Microsoft/VisualStudio/2019/BuildTools/16.11.49/Microsoft.VisualStudio.2019.BuildTools.yaml new file mode 100644 index 0000000000000..a1787cefa1063 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2019/BuildTools/16.11.49/Microsoft.VisualStudio.2019.BuildTools.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2019.BuildTools +PackageVersion: 16.11.49 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/VisualStudio/2019/Enterprise/16.11.49/Microsoft.VisualStudio.2019.Enterprise.installer.yaml b/manifests/m/Microsoft/VisualStudio/2019/Enterprise/16.11.49/Microsoft.VisualStudio.2019.Enterprise.installer.yaml new file mode 100644 index 0000000000000..1ee0ed5de7bca --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2019/Enterprise/16.11.49/Microsoft.VisualStudio.2019.Enterprise.installer.yaml @@ -0,0 +1,92 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2019.Enterprise +PackageVersion: 16.11.49 +InstallerSwitches: + Silent: --quiet + SilentWithProgress: --passive + Upgrade: update + Custom: --wait +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 +Installers: +- MinimumOSVersion: 10.0.0.0 + Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/12569159-fcaa-4029-a83e-b7b900c5f9d6/b79ce63eb0859e366d16903057be473da75dfb60b7987c39ed4d7dca22c8cb99/vs_Enterprise.exe + InstallerSha256: b79ce63eb0859e366d16903057be473da75dfb60b7987c39ed4d7dca22c8cb99 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/VisualStudio/2019/Enterprise/16.11.49/Microsoft.VisualStudio.2019.Enterprise.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudio/2019/Enterprise/16.11.49/Microsoft.VisualStudio.2019.Enterprise.locale.en-US.yaml new file mode 100644 index 0000000000000..ea92ed80e3c05 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2019/Enterprise/16.11.49/Microsoft.VisualStudio.2019.Enterprise.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2019.Enterprise +PackageVersion: 16.11.49 +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: An integrated, end-to-end solution for developers looking for high productivity and seamless coordination across teams of any size. +Moniker: vs2019-enterprise +Tags: +- c# +- c++ +- vs +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/VisualStudio/2019/Enterprise/16.11.49/Microsoft.VisualStudio.2019.Enterprise.yaml b/manifests/m/Microsoft/VisualStudio/2019/Enterprise/16.11.49/Microsoft.VisualStudio.2019.Enterprise.yaml new file mode 100644 index 0000000000000..07ff56b067eba --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2019/Enterprise/16.11.49/Microsoft.VisualStudio.2019.Enterprise.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2019.Enterprise +PackageVersion: 16.11.49 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/VisualStudio/2019/Professional/16.11.49/Microsoft.VisualStudio.2019.Professional.installer.yaml b/manifests/m/Microsoft/VisualStudio/2019/Professional/16.11.49/Microsoft.VisualStudio.2019.Professional.installer.yaml new file mode 100644 index 0000000000000..27fdc9cf8ab57 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2019/Professional/16.11.49/Microsoft.VisualStudio.2019.Professional.installer.yaml @@ -0,0 +1,92 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2019.Professional +PackageVersion: 16.11.49 +InstallerSwitches: + Silent: --quiet + SilentWithProgress: --passive + Upgrade: update + Custom: --wait +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 +Installers: +- MinimumOSVersion: 10.0.0.0 + Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/12569159-fcaa-4029-a83e-b7b900c5f9d6/1874842a56f476fab072a8c338a4e27e0bae768a330cf14f3e2fe586727e6fc7/vs_Professional.exe + InstallerSha256: 1874842a56f476fab072a8c338a4e27e0bae768a330cf14f3e2fe586727e6fc7 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/VisualStudio/2019/Professional/16.11.49/Microsoft.VisualStudio.2019.Professional.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudio/2019/Professional/16.11.49/Microsoft.VisualStudio.2019.Professional.locale.en-US.yaml new file mode 100644 index 0000000000000..da4c88299860e --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2019/Professional/16.11.49/Microsoft.VisualStudio.2019.Professional.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2019.Professional +PackageVersion: 16.11.49 +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: An integrated, end-to-end solution for developers looking for high productivity and seamless coordination across teams of any size. +Moniker: vs2019-professional +Tags: +- c# +- c++ +- vs +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/VisualStudio/2019/Professional/16.11.49/Microsoft.VisualStudio.2019.Professional.yaml b/manifests/m/Microsoft/VisualStudio/2019/Professional/16.11.49/Microsoft.VisualStudio.2019.Professional.yaml new file mode 100644 index 0000000000000..cfdaeff560a84 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2019/Professional/16.11.49/Microsoft.VisualStudio.2019.Professional.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2019.Professional +PackageVersion: 16.11.49 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/VisualStudio/2022/BuildTools/17.14.8/Microsoft.VisualStudio.2022.BuildTools.installer.yaml b/manifests/m/Microsoft/VisualStudio/2022/BuildTools/17.14.8/Microsoft.VisualStudio.2022.BuildTools.installer.yaml new file mode 100644 index 0000000000000..0d05e98286d15 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2022/BuildTools/17.14.8/Microsoft.VisualStudio.2022.BuildTools.installer.yaml @@ -0,0 +1,92 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2022.BuildTools +PackageVersion: 17.14.8 +InstallerSwitches: + Silent: --quiet + SilentWithProgress: --passive + Upgrade: update + Custom: --wait +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 +Installers: +- MinimumOSVersion: 10.0.0.0 + Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/f55fba7b-3f02-49b7-9aca-a075049a807d/54aaec8b9879acb7f54282f8442e81a620e4e79a2e0990572a3fab9de70c05d6/vs_BuildTools.exe + InstallerSha256: 54aaec8b9879acb7f54282f8442e81a620e4e79a2e0990572a3fab9de70c05d6 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/VisualStudio/2022/BuildTools/17.14.8/Microsoft.VisualStudio.2022.BuildTools.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudio/2022/BuildTools/17.14.8/Microsoft.VisualStudio.2022.BuildTools.locale.en-US.yaml new file mode 100644 index 0000000000000..3fd6c7f946708 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2022/BuildTools/17.14.8/Microsoft.VisualStudio.2022.BuildTools.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2022.BuildTools +PackageVersion: 17.14.8 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Visual Studio BuildTools 2022 +PackageUrl: https://visualstudio.microsoft.com/ +License: Proprietary +LicenseUrl: https://visualstudio.microsoft.com/license-terms/ +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +ShortDescription: An integrated, end-to-end solution for developers looking for high productivity and seamless coordination across teams of any size. +Moniker: vs2022-buildtools +Tags: +- c# +- c++ +- vs +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/VisualStudio/2022/BuildTools/17.14.8/Microsoft.VisualStudio.2022.BuildTools.yaml b/manifests/m/Microsoft/VisualStudio/2022/BuildTools/17.14.8/Microsoft.VisualStudio.2022.BuildTools.yaml new file mode 100644 index 0000000000000..a7023e1034702 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2022/BuildTools/17.14.8/Microsoft.VisualStudio.2022.BuildTools.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2022.BuildTools +PackageVersion: 17.14.8 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/VisualStudio/2022/Enterprise/17.14.8/Microsoft.VisualStudio.2022.Enterprise.installer.yaml b/manifests/m/Microsoft/VisualStudio/2022/Enterprise/17.14.8/Microsoft.VisualStudio.2022.Enterprise.installer.yaml new file mode 100644 index 0000000000000..b520958f95bd4 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2022/Enterprise/17.14.8/Microsoft.VisualStudio.2022.Enterprise.installer.yaml @@ -0,0 +1,92 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2022.Enterprise +PackageVersion: 17.14.8 +InstallerSwitches: + Silent: --quiet + SilentWithProgress: --passive + Upgrade: update + Custom: --wait +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 +Installers: +- MinimumOSVersion: 10.0.0.0 + Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/f55fba7b-3f02-49b7-9aca-a075049a807d/9aca214a7c2982c847582af89b9168b876cc5d4041ae64b6cb677f3ff7236388/vs_Enterprise.exe + InstallerSha256: 9aca214a7c2982c847582af89b9168b876cc5d4041ae64b6cb677f3ff7236388 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/VisualStudio/2022/Enterprise/17.14.8/Microsoft.VisualStudio.2022.Enterprise.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudio/2022/Enterprise/17.14.8/Microsoft.VisualStudio.2022.Enterprise.locale.en-US.yaml new file mode 100644 index 0000000000000..177a8688e8dea --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2022/Enterprise/17.14.8/Microsoft.VisualStudio.2022.Enterprise.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2022.Enterprise +PackageVersion: 17.14.8 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Visual Studio Enterprise 2022 +PackageUrl: https://visualstudio.microsoft.com/ +License: Proprietary +LicenseUrl: https://visualstudio.microsoft.com/license-terms/ +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +ShortDescription: An integrated, end-to-end solution for developers looking for high productivity and seamless coordination across teams of any size. +Moniker: vs2022-enterprise +Tags: +- c# +- c++ +- vs +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/VisualStudio/2022/Enterprise/17.14.8/Microsoft.VisualStudio.2022.Enterprise.yaml b/manifests/m/Microsoft/VisualStudio/2022/Enterprise/17.14.8/Microsoft.VisualStudio.2022.Enterprise.yaml new file mode 100644 index 0000000000000..d40deb707653f --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2022/Enterprise/17.14.8/Microsoft.VisualStudio.2022.Enterprise.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2022.Enterprise +PackageVersion: 17.14.8 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/VisualStudio/2022/Professional/17.14.8/Microsoft.VisualStudio.2022.Professional.installer.yaml b/manifests/m/Microsoft/VisualStudio/2022/Professional/17.14.8/Microsoft.VisualStudio.2022.Professional.installer.yaml new file mode 100644 index 0000000000000..5df21e4dcf323 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2022/Professional/17.14.8/Microsoft.VisualStudio.2022.Professional.installer.yaml @@ -0,0 +1,92 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2022.Professional +PackageVersion: 17.14.8 +InstallerSwitches: + Silent: --quiet + SilentWithProgress: --passive + Upgrade: update + Custom: --wait +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 +Installers: +- MinimumOSVersion: 10.0.0.0 + Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/f55fba7b-3f02-49b7-9aca-a075049a807d/0225dd4e589deedc37ff671f4d3ddf9e67fa6242fd1ea83f8db487f6025261fc/vs_Professional.exe + InstallerSha256: 0225dd4e589deedc37ff671f4d3ddf9e67fa6242fd1ea83f8db487f6025261fc +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/VisualStudio/2022/Professional/17.14.8/Microsoft.VisualStudio.2022.Professional.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudio/2022/Professional/17.14.8/Microsoft.VisualStudio.2022.Professional.locale.en-US.yaml new file mode 100644 index 0000000000000..136b6c74a9f6d --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2022/Professional/17.14.8/Microsoft.VisualStudio.2022.Professional.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2022.Professional +PackageVersion: 17.14.8 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Visual Studio Professional 2022 +PackageUrl: https://visualstudio.microsoft.com/ +License: Proprietary +LicenseUrl: https://visualstudio.microsoft.com/license-terms/ +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +ShortDescription: An integrated, end-to-end solution for developers looking for high productivity and seamless coordination across teams of any size. +Moniker: vs2022-professional +Tags: +- c# +- c++ +- vs +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/VisualStudio/2022/Professional/17.14.8/Microsoft.VisualStudio.2022.Professional.yaml b/manifests/m/Microsoft/VisualStudio/2022/Professional/17.14.8/Microsoft.VisualStudio.2022.Professional.yaml new file mode 100644 index 0000000000000..ac928a347dcee --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2022/Professional/17.14.8/Microsoft.VisualStudio.2022.Professional.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2022.Professional +PackageVersion: 17.14.8 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/VisualStudio/2022/RemoteTools/17.14.0/Microsoft.VisualStudio.2022.RemoteTools.installer.yaml b/manifests/m/Microsoft/VisualStudio/2022/RemoteTools/17.14.0/Microsoft.VisualStudio.2022.RemoteTools.installer.yaml deleted file mode 100644 index 72b205e919879..0000000000000 --- a/manifests/m/Microsoft/VisualStudio/2022/RemoteTools/17.14.0/Microsoft.VisualStudio.2022.RemoteTools.installer.yaml +++ /dev/null @@ -1,31 +0,0 @@ -# Created using wingetcreate 1.9.4.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json - -PackageIdentifier: Microsoft.VisualStudio.2022.RemoteTools -PackageVersion: 17.14.0 -InstallerLocale: en-US -Platform: -- Windows.Desktop -MinimumOSVersion: 6.1.7601.17514 -InstallerType: exe -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -InstallerSwitches: - Silent: /quiet - SilentWithProgress: /passive - Log: /log -Installers: -- Architecture: x86 - InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/6a9a4e40-04d5-4d93-9412-5ac7ab10d9ff/92db2d6e796c76026e933f2bb63ba34c50257bbeec96007016c3a162f92d6e38/VS_RemoteTools.exe - InstallerSha256: 92DB2D6E796C76026E933F2BB63BA34C50257BBEEC96007016C3A162F92D6E38 -- Architecture: x64 - InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/6a9a4e40-04d5-4d93-9412-5ac7ab10d9ff/1322ea151fe5fa3b157fb3e5d92157ea680a4cc60bdf3fd854b46be4c3de4230/VS_RemoteTools.exe - InstallerSha256: 1322EA151FE5FA3B157FB3E5D92157EA680A4CC60BDF3FD854B46BE4C3DE4230 -- Architecture: arm64 - InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/6a9a4e40-04d5-4d93-9412-5ac7ab10d9ff/26a78b90f1f6f1174711212f099760c1d5027935adadb6f726ae33dce57bd896/VS_RemoteTools.exe - InstallerSha256: 26A78B90F1F6F1174711212F099760C1D5027935ADADB6F726AE33DCE57BD896 -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/VisualStudio/2022/RemoteTools/17.14.8/Microsoft.VisualStudio.2022.RemoteTools.installer.yaml b/manifests/m/Microsoft/VisualStudio/2022/RemoteTools/17.14.8/Microsoft.VisualStudio.2022.RemoteTools.installer.yaml new file mode 100644 index 0000000000000..f64a94a03232a --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2022/RemoteTools/17.14.8/Microsoft.VisualStudio.2022.RemoteTools.installer.yaml @@ -0,0 +1,31 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2022.RemoteTools +PackageVersion: 17.14.8 +InstallerLocale: en-US +Platform: +- Windows.Desktop +MinimumOSVersion: 6.1.7601.17514 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Log: /log +Installers: +- Architecture: x86 + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/7ebf5fdb-36dc-4145-b0a0-90d3d5990a61/ee861ad443f2b2f9c38e8f88da972534714100a261894199b453103ec78b229d/VS_RemoteTools.exe + InstallerSha256: EE861AD443F2B2F9C38E8F88DA972534714100A261894199B453103EC78B229D +- Architecture: x64 + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/7ebf5fdb-36dc-4145-b0a0-90d3d5990a61/4f3a9bb0ac443eff807c8ff04fad7683e98acfe67c0bc293da89cc673e1186a3/VS_RemoteTools.exe + InstallerSha256: 4F3A9BB0AC443EFF807C8FF04FAD7683E98ACFE67C0BC293DA89CC673E1186A3 +- Architecture: arm64 + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/7ebf5fdb-36dc-4145-b0a0-90d3d5990a61/fa1d6c1c2dc4fd97889c1f76ebdb50fa040ece18a2f6d63b2cfc09809d20b74a/VS_RemoteTools.exe + InstallerSha256: FA1D6C1C2DC4FD97889C1F76EBDB50FA040ECE18A2F6D63B2CFC09809D20B74A +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/VisualStudio/2022/RemoteTools/17.14.0/Microsoft.VisualStudio.2022.RemoteTools.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudio/2022/RemoteTools/17.14.8/Microsoft.VisualStudio.2022.RemoteTools.locale.en-US.yaml similarity index 87% rename from manifests/m/Microsoft/VisualStudio/2022/RemoteTools/17.14.0/Microsoft.VisualStudio.2022.RemoteTools.locale.en-US.yaml rename to manifests/m/Microsoft/VisualStudio/2022/RemoteTools/17.14.8/Microsoft.VisualStudio.2022.RemoteTools.locale.en-US.yaml index dd6c0b1581609..4d7460e6fed1b 100644 --- a/manifests/m/Microsoft/VisualStudio/2022/RemoteTools/17.14.0/Microsoft.VisualStudio.2022.RemoteTools.locale.en-US.yaml +++ b/manifests/m/Microsoft/VisualStudio/2022/RemoteTools/17.14.8/Microsoft.VisualStudio.2022.RemoteTools.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.9.4.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json PackageIdentifier: Microsoft.VisualStudio.2022.RemoteTools -PackageVersion: 17.14.0 +PackageVersion: 17.14.8 PackageLocale: en-US Publisher: Microsoft Corporation PublisherUrl: https://www.microsoft.com/ @@ -21,4 +21,4 @@ Tags: - remote - ext ManifestType: defaultLocale -ManifestVersion: 1.9.0 +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/VisualStudio/2022/RemoteTools/17.14.0/Microsoft.VisualStudio.2022.RemoteTools.yaml b/manifests/m/Microsoft/VisualStudio/2022/RemoteTools/17.14.8/Microsoft.VisualStudio.2022.RemoteTools.yaml similarity index 58% rename from manifests/m/Microsoft/VisualStudio/2022/RemoteTools/17.14.0/Microsoft.VisualStudio.2022.RemoteTools.yaml rename to manifests/m/Microsoft/VisualStudio/2022/RemoteTools/17.14.8/Microsoft.VisualStudio.2022.RemoteTools.yaml index 75ead173e1f0a..19e2c2a40a84f 100644 --- a/manifests/m/Microsoft/VisualStudio/2022/RemoteTools/17.14.0/Microsoft.VisualStudio.2022.RemoteTools.yaml +++ b/manifests/m/Microsoft/VisualStudio/2022/RemoteTools/17.14.8/Microsoft.VisualStudio.2022.RemoteTools.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.9.4.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json PackageIdentifier: Microsoft.VisualStudio.2022.RemoteTools -PackageVersion: 17.14.0 +PackageVersion: 17.14.8 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.9.0 +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/VisualStudioCode/Insiders/CLI/1.102.0/Microsoft.VisualStudioCode.Insiders.CLI.installer.yaml b/manifests/m/Microsoft/VisualStudioCode/Insiders/CLI/1.102.0/Microsoft.VisualStudioCode.Insiders.CLI.installer.yaml index 61302da9bbe7a..4f6d7b1efd54c 100644 --- a/manifests/m/Microsoft/VisualStudioCode/Insiders/CLI/1.102.0/Microsoft.VisualStudioCode.Insiders.CLI.installer.yaml +++ b/manifests/m/Microsoft/VisualStudioCode/Insiders/CLI/1.102.0/Microsoft.VisualStudioCode.Insiders.CLI.installer.yaml @@ -10,10 +10,10 @@ NestedInstallerFiles: PortableCommandAlias: code-insiders Installers: - Architecture: arm64 - InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/insider/6e855004c713d9c2610091ab7eb68b677830087f/vscode_cli_win32_arm64_cli.zip - InstallerSha256: 1503AEF25C148BEA8540E59DD776B4AB333D41962413B39DCED38AAFB87747EA + InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/insider/7631de29bf9a2e31020ab93d3d1611965dc5b62e/vscode_cli_win32_arm64_cli.zip + InstallerSha256: 34CC7C492D74EFC9FE44EA41D5D432B09028AA0D93A4732615325BE6DA4FA467 - Architecture: x64 - InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/insider/6e855004c713d9c2610091ab7eb68b677830087f/vscode_cli_win32_x64_cli.zip - InstallerSha256: C96B223CAD257AA72DC9DB864BBC0D3E667D067BA9FF961F1272A92E5FDE633A + InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/insider/7631de29bf9a2e31020ab93d3d1611965dc5b62e/vscode_cli_win32_x64_cli.zip + InstallerSha256: 835ADC6806A008C23E3036C72F3A977FD67C0B7203843D30AA9CF79E7D5948B8 ManifestType: installer ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/WindowsApp/2.0.559.0/Microsoft.WindowsApp.installer.yaml b/manifests/m/Microsoft/WindowsApp/2.0.559.0/Microsoft.WindowsApp.installer.yaml new file mode 100644 index 0000000000000..5b02922123e1b --- /dev/null +++ b/manifests/m/Microsoft/WindowsApp/2.0.559.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.10.0.schema.json + +PackageIdentifier: Microsoft.WindowsApp +PackageVersion: 2.0.559.0 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.19044.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/c6a55be6-e4f6-4c7c-b016-59204033d97e/WindowsApp_x86_Release_2.0.559.0.msix + InstallerSha256: 8AAF8345278F4C139E31FDF14D41000563171359E4B2B66A7E3E8C54577A02D4 + SignatureSha256: AF62DFAFB89123005826384370878DAE032E48192A9C763F0B15CCA1CA931396 +- Architecture: x64 + InstallerUrl: https://res.cdn.office.net/remote-desktop-windows-client/fb7eff4c-5a36-47f8-ba7b-015e78f47976/WindowsApp_x64_Release_2.0.559.0.msix + InstallerSha256: F550F533291880FBC5364E62AA0642301FD6D31ED01D758C39EB2EC9DB848376 + SignatureSha256: 5AC71B8B84D62E5B13D582E46CA96897416D9C8C37CD9352D8BC86E71B45C231 +- Architecture: arm64 + InstallerUrl: https://res.cdn.office.net/remote-desktop-windows-client/f3c2f58c-5675-4122-a6e1-2a986ecafacb/WindowsApp_arm64_Release_2.0.559.0.msix + InstallerSha256: 0ED0506329FD6879C3B2D40CD95F8F68EFD6192930844F4B682374260E859567 + SignatureSha256: 294EF327B9E786FDB7553F839ADAA9DF53F133D119BD61DC6A6E5BDBF2B16D3C +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/WindowsApp/2.0.559.0/Microsoft.WindowsApp.locale.en-US.yaml b/manifests/m/Microsoft/WindowsApp/2.0.559.0/Microsoft.WindowsApp.locale.en-US.yaml new file mode 100644 index 0000000000000..651dccbdaccb0 --- /dev/null +++ b/manifests/m/Microsoft/WindowsApp/2.0.559.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.10.0.schema.json + +PackageIdentifier: Microsoft.WindowsApp +PackageVersion: 2.0.559.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) 2024 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.10.0 diff --git a/manifests/m/Microsoft/WindowsApp/2.0.559.0/Microsoft.WindowsApp.locale.zh-CN.yaml b/manifests/m/Microsoft/WindowsApp/2.0.559.0/Microsoft.WindowsApp.locale.zh-CN.yaml new file mode 100644 index 0000000000000..51b7f8c79a039 --- /dev/null +++ b/manifests/m/Microsoft/WindowsApp/2.0.559.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.10.0.schema.json + +PackageIdentifier: Microsoft.WindowsApp +PackageVersion: 2.0.559.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.10.0 diff --git a/manifests/m/Microsoft/WindowsApp/2.0.559.0/Microsoft.WindowsApp.yaml b/manifests/m/Microsoft/WindowsApp/2.0.559.0/Microsoft.WindowsApp.yaml new file mode 100644 index 0000000000000..4bc6fbcbb29a7 --- /dev/null +++ b/manifests/m/Microsoft/WindowsApp/2.0.559.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.10.0.schema.json + +PackageIdentifier: Microsoft.WindowsApp +PackageVersion: 2.0.559.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/WindowsSDK/10/0/19041/10.0.19041.685/Microsoft.WindowsSDK.10.0.19041.installer.yaml b/manifests/m/Microsoft/WindowsSDK/10/0/19041/10.0.19041.685/Microsoft.WindowsSDK.10.0.19041.installer.yaml index 51269a8bcac61..3bebe1817db78 100644 --- a/manifests/m/Microsoft/WindowsSDK/10/0/19041/10.0.19041.685/Microsoft.WindowsSDK.10.0.19041.installer.yaml +++ b/manifests/m/Microsoft/WindowsSDK/10/0/19041/10.0.19041.685/Microsoft.WindowsSDK.10.0.19041.installer.yaml @@ -1,5 +1,5 @@ -# Created with YamlCreate.ps1 v2.2.7 $debug=AUSU.CRLF.5-1-19041-2673.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: Microsoft.WindowsSDK.10.0.19041 PackageVersion: 10.0.19041.685 @@ -11,6 +11,7 @@ UpgradeBehavior: uninstallPrevious AppsAndFeaturesEntries: - DisplayName: Windows Software Development Kit - Windows 10.0.19041.685 Publisher: Microsoft Corporation + DisplayVersion: 10.1.19041.685 ProductCode: '{4591faf1-a2db-4a3d-bfda-aa5a4ebb1587}' Installers: - Architecture: x86 @@ -18,4 +19,4 @@ Installers: InstallerSha256: 42D2774274D1135FC598C180C2ACBF2321EB4192F59E511E6AC7772870BF6DE1 ProductCode: '{4591faf1-a2db-4a3d-bfda-aa5a4ebb1587}' ManifestType: installer -ManifestVersion: 1.4.0 +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/WindowsSDK/10/0/19041/10.0.19041.685/Microsoft.WindowsSDK.10.0.19041.locale.en-US.yaml b/manifests/m/Microsoft/WindowsSDK/10/0/19041/10.0.19041.685/Microsoft.WindowsSDK.10.0.19041.locale.en-US.yaml index fa5078eef16d6..9f2aee1f0b0db 100644 --- a/manifests/m/Microsoft/WindowsSDK/10/0/19041/10.0.19041.685/Microsoft.WindowsSDK.10.0.19041.locale.en-US.yaml +++ b/manifests/m/Microsoft/WindowsSDK/10/0/19041/10.0.19041.685/Microsoft.WindowsSDK.10.0.19041.locale.en-US.yaml @@ -1,5 +1,5 @@ -# Created with YamlCreate.ps1 v2.2.7 $debug=AUSU.CRLF.5-1-19041-2673.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: Microsoft.WindowsSDK.10.0.19041 PackageVersion: 10.0.19041.685 @@ -26,4 +26,4 @@ ShortDescription: The Windows SDK (10.0.19041.685) for Windows 10 provides the l # InstallationNotes: # Documentations: ManifestType: defaultLocale -ManifestVersion: 1.4.0 +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/WindowsSDK/10/0/19041/10.0.19041.685/Microsoft.WindowsSDK.10.0.19041.yaml b/manifests/m/Microsoft/WindowsSDK/10/0/19041/10.0.19041.685/Microsoft.WindowsSDK.10.0.19041.yaml index 33c15f99490d1..491229e3d6e74 100644 --- a/manifests/m/Microsoft/WindowsSDK/10/0/19041/10.0.19041.685/Microsoft.WindowsSDK.10.0.19041.yaml +++ b/manifests/m/Microsoft/WindowsSDK/10/0/19041/10.0.19041.685/Microsoft.WindowsSDK.10.0.19041.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.2.7 $debug=AUSU.CRLF.5-1-19041-2673.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: Microsoft.WindowsSDK.10.0.19041 PackageVersion: 10.0.19041.685 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.4.0 +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/WindowsSDK/10/0/20348/10.0.20348.1/Microsoft.WindowsSDK.10.0.20348.installer.yaml b/manifests/m/Microsoft/WindowsSDK/10/0/20348/10.0.20348.1/Microsoft.WindowsSDK.10.0.20348.installer.yaml new file mode 100644 index 0000000000000..3c2d4b474afcf --- /dev/null +++ b/manifests/m/Microsoft/WindowsSDK/10/0/20348/10.0.20348.1/Microsoft.WindowsSDK.10.0.20348.installer.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Microsoft.WindowsSDK.10.0.20348 +PackageVersion: 10.0.20348.1 +MinimumOSVersion: 10.0.0.0 +InstallerType: exe +InstallerSwitches: + Silent: /q + SilentWithProgress: /q +UpgradeBehavior: uninstallPrevious +AppsAndFeaturesEntries: +- DisplayName: Windows Software Development Kit - Windows 10.0.20348.1 + DisplayVersion: 10.1.20348.1 + Publisher: Microsoft Corporation + UpgradeCode: '{DD38DE23-AA03-2E43-4BEF-397FA57E368F}' +Installers: +- Architecture: x86 + InstallerUrl: https://download.microsoft.com/download/9/7/9/97982c1d-d687-41be-9dd3-6d01e52ceb68/windowssdk/winsdksetup.exe + InstallerSha256: BC73435923977350AC92420A06C0D5A7DB3A966CE66393C3218ACCC6B1B4076D + ProductCode: '{63ca8fb0-603f-4442-aa8b-48659a9338f5}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/WindowsSDK/10/0/20348/10.0.20348.1/Microsoft.WindowsSDK.10.0.20348.locale.en-US.yaml b/manifests/m/Microsoft/WindowsSDK/10/0/20348/10.0.20348.1/Microsoft.WindowsSDK.10.0.20348.locale.en-US.yaml new file mode 100644 index 0000000000000..8cc8f2b71b92d --- /dev/null +++ b/manifests/m/Microsoft/WindowsSDK/10/0/20348/10.0.20348.1/Microsoft.WindowsSDK.10.0.20348.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Microsoft.WindowsSDK.10.0.20348 +PackageVersion: 10.0.20348.1 +PackageLocale: en-US +Publisher: Microsoft Corporation +PublisherUrl: https://www.microsoft.com/ +# PublisherSupportUrl: +PrivacyUrl: https://docs.microsoft.com/en-us/windows/privacy/ +# Author: +PackageName: Windows Software Development Kit +PackageUrl: https://developer.microsoft.com/windows/downloads/windows-sdk/ +License: Proprietary +# LicenseUrl: +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +# CopyrightUrl: +ShortDescription: The Windows SDK (10.1.20348.1) for Windows 10 provides the latest headers, libraries, metadata, and tools for building Windows apps. +# Description: +# Moniker: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/WindowsSDK/10/0/20348/10.0.20348.1/Microsoft.WindowsSDK.10.0.20348.yaml b/manifests/m/Microsoft/WindowsSDK/10/0/20348/10.0.20348.1/Microsoft.WindowsSDK.10.0.20348.yaml new file mode 100644 index 0000000000000..53136ca9a54cc --- /dev/null +++ b/manifests/m/Microsoft/WindowsSDK/10/0/20348/10.0.20348.1/Microsoft.WindowsSDK.10.0.20348.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Microsoft.WindowsSDK.10.0.20348 +PackageVersion: 10.0.20348.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/WindowsSDK/10/0/22621/10.0.22621.2428/Microsoft.WindowsSDK.10.0.22621.installer.yaml b/manifests/m/Microsoft/WindowsSDK/10/0/22621/10.0.22621.2428/Microsoft.WindowsSDK.10.0.22621.installer.yaml new file mode 100644 index 0000000000000..6810d11ec471f --- /dev/null +++ b/manifests/m/Microsoft/WindowsSDK/10/0/22621/10.0.22621.2428/Microsoft.WindowsSDK.10.0.22621.installer.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Microsoft.WindowsSDK.10.0.22621 +PackageVersion: 10.0.22621.2428 +MinimumOSVersion: 10.0.0.0 +InstallerType: burn +InstallerSwitches: + Silent: /q + SilentWithProgress: /q +UpgradeBehavior: uninstallPrevious +AppsAndFeaturesEntries: +- DisplayName: Windows Software Development Kit - Windows 10.0.22621.2428 + Publisher: Microsoft Corporation + DisplayVersion: 10.1.22621.2428 + ProductCode: '{7645bd51-e95b-48cd-bf4b-0e9ab7ef33b0}' +Installers: +- Architecture: x86 + InstallerUrl: https://download.microsoft.com/download/3/b/d/3bd97f81-3f5b-4922-b86d-dc5145cd6bfe/windowssdk/winsdksetup.exe + InstallerSha256: 3F73F59566B0CF3EDDDDAF61AD72BB0C6E4588A5D9E004ABF68115B752EBBBD8 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/WindowsSDK/10/0/22621/10.0.22621.2428/Microsoft.WindowsSDK.10.0.22621.locale.en-US.yaml b/manifests/m/Microsoft/WindowsSDK/10/0/22621/10.0.22621.2428/Microsoft.WindowsSDK.10.0.22621.locale.en-US.yaml new file mode 100644 index 0000000000000..f367e8552e8c6 --- /dev/null +++ b/manifests/m/Microsoft/WindowsSDK/10/0/22621/10.0.22621.2428/Microsoft.WindowsSDK.10.0.22621.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Microsoft.WindowsSDK.10.0.22621 +PackageVersion: 10.0.22621.2428 +PackageLocale: en-US +Publisher: Microsoft Corporation +PublisherUrl: https://www.microsoft.com/en-us/ +PublisherSupportUrl: https://support.microsoft.com/en-us +PrivacyUrl: https://privacy.microsoft.com/en-us/privacystatement +Author: Microsoft Corporation +PackageName: Windows Software Development Kit - Windows 10.0.22621.2428 +# PackageUrl: +License: Proprietary +# LicenseUrl: +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +# CopyrightUrl: +ShortDescription: The Windows Software Development Kit (10.1.22621.2428) for Windows 11 provides the latest headers, libraries, metadata, and tools for building Windows apps. +# Description: +# Moniker: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/WindowsSDK/10/0/22621/10.0.22621.2428/Microsoft.WindowsSDK.10.0.22621.yaml b/manifests/m/Microsoft/WindowsSDK/10/0/22621/10.0.22621.2428/Microsoft.WindowsSDK.10.0.22621.yaml new file mode 100644 index 0000000000000..ee773c62cb3f0 --- /dev/null +++ b/manifests/m/Microsoft/WindowsSDK/10/0/22621/10.0.22621.2428/Microsoft.WindowsSDK.10.0.22621.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Microsoft.WindowsSDK.10.0.22621 +PackageVersion: 10.0.22621.2428 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.1/Microsoft.WindowsSDK.10.0.26100.installer.yaml b/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.1/Microsoft.WindowsSDK.10.0.26100.installer.yaml new file mode 100644 index 0000000000000..a26b6106d0444 --- /dev/null +++ b/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.1/Microsoft.WindowsSDK.10.0.26100.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Microsoft.WindowsSDK.10.0.26100 +PackageVersion: 10.0.26100.1 +MinimumOSVersion: 10.0.0.0 +InstallerType: burn +InstallerSwitches: + Silent: /q + SilentWithProgress: /q + Log: ' ' +UpgradeBehavior: uninstallPrevious +AppsAndFeaturesEntries: +- DisplayVersion: 10.1.26100.1 +Installers: +- Architecture: x86 + InstallerUrl: https://download.microsoft.com/download/2/6/f/26f7aa55-ef6f-4882-b19b-a1be0e7328fe/KIT_BUNDLE_WINDOWSSDK_MEDIACREATION/winsdksetup.exe + InstallerSha256: 5535188A9AEEA1CEBCBF04DE3C2C37D76F10600A65867FF65F6153D507B60488 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.1/Microsoft.WindowsSDK.10.0.26100.locale.en-US.yaml b/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.1/Microsoft.WindowsSDK.10.0.26100.locale.en-US.yaml new file mode 100644 index 0000000000000..474ac9609b7f2 --- /dev/null +++ b/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.1/Microsoft.WindowsSDK.10.0.26100.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Microsoft.WindowsSDK.10.0.26100 +PackageVersion: 10.0.26100.1 +PackageLocale: en-US +Publisher: Microsoft Corporation +PublisherUrl: https://www.microsoft.com/en-us/ +PublisherSupportUrl: https://support.microsoft.com/en-us +PrivacyUrl: https://privacy.microsoft.com/en-us/privacystatement +Author: Microsoft Corporation +PackageName: Windows Software Development Kit - Windows 10.0.26100.1 +# PackageUrl: +License: Proprietary +# LicenseUrl: +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +# CopyrightUrl: +ShortDescription: The Windows Software Development Kit (10.1.26100.1) for Windows 11 provides the latest headers, libraries, metadata, and tools for building Windows apps. +# Description: +# Moniker: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.1/Microsoft.WindowsSDK.10.0.26100.yaml b/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.1/Microsoft.WindowsSDK.10.0.26100.yaml new file mode 100644 index 0000000000000..8034b75c4ca8a --- /dev/null +++ b/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.1/Microsoft.WindowsSDK.10.0.26100.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Microsoft.WindowsSDK.10.0.26100 +PackageVersion: 10.0.26100.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.1742/Microsoft.WindowsSDK.10.0.26100.installer.yaml b/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.1742/Microsoft.WindowsSDK.10.0.26100.installer.yaml new file mode 100644 index 0000000000000..aa793e456793e --- /dev/null +++ b/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.1742/Microsoft.WindowsSDK.10.0.26100.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Microsoft.WindowsSDK.10.0.26100 +PackageVersion: 10.0.26100.1742 +MinimumOSVersion: 10.0.0.0 +InstallerType: burn +InstallerSwitches: + Silent: /q + SilentWithProgress: /q + Log: ' ' +UpgradeBehavior: uninstallPrevious +AppsAndFeaturesEntries: +- DisplayVersion: 10.1.26100.1742 +Installers: +- Architecture: x86 + InstallerUrl: https://download.microsoft.com/download/e/b/3/eb320eb1-b21e-4e6e-899e-d6aec552ecb0/KIT_BUNDLE_WINDOWSSDK_MEDIACREATION/winsdksetup.exe + InstallerSha256: A8E6B6CC2DCEC9FDD4C35553A4CBF288C9CE5E4761D7A2762F06A3A95F1E530D +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.1742/Microsoft.WindowsSDK.10.0.26100.locale.en-US.yaml b/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.1742/Microsoft.WindowsSDK.10.0.26100.locale.en-US.yaml new file mode 100644 index 0000000000000..8cd54cc2f1ffa --- /dev/null +++ b/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.1742/Microsoft.WindowsSDK.10.0.26100.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Microsoft.WindowsSDK.10.0.26100 +PackageVersion: 10.0.26100.1742 +PackageLocale: en-US +Publisher: Microsoft Corporation +PublisherUrl: https://www.microsoft.com/en-us/ +PublisherSupportUrl: https://support.microsoft.com/en-us +PrivacyUrl: https://privacy.microsoft.com/en-us/privacystatement +Author: Microsoft Corporation +PackageName: Windows Software Development Kit - Windows 10.0.26100.1742 +# PackageUrl: +License: Proprietary +# LicenseUrl: +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +# CopyrightUrl: +ShortDescription: The Windows Software Development Kit (10.1.26100.1742) for Windows 11 provides the latest headers, libraries, metadata, and tools for building Windows apps. +# Description: +# Moniker: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.1742/Microsoft.WindowsSDK.10.0.26100.yaml b/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.1742/Microsoft.WindowsSDK.10.0.26100.yaml new file mode 100644 index 0000000000000..d4d83c63b743b --- /dev/null +++ b/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.1742/Microsoft.WindowsSDK.10.0.26100.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Microsoft.WindowsSDK.10.0.26100 +PackageVersion: 10.0.26100.1742 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.2454/Microsoft.WindowsSDK.10.0.26100.installer.yaml b/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.2454/Microsoft.WindowsSDK.10.0.26100.installer.yaml index 062454190a66f..ad347a7cd0630 100644 --- a/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.2454/Microsoft.WindowsSDK.10.0.26100.installer.yaml +++ b/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.2454/Microsoft.WindowsSDK.10.0.26100.installer.yaml @@ -1,5 +1,5 @@ -# Created using wingetcreate 1.9.2.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: Microsoft.WindowsSDK.10.0.26100 PackageVersion: 10.0.26100.2454 @@ -8,11 +8,13 @@ InstallerType: burn InstallerSwitches: Silent: /q SilentWithProgress: /q - Log: " " + Log: ' ' UpgradeBehavior: uninstallPrevious +AppsAndFeaturesEntries: +- DisplayVersion: 10.1.26100.2454 Installers: - Architecture: x86 InstallerUrl: https://download.microsoft.com/download/a/f/2/af287d69-2c0a-4320-9d0f-555d5be767b9/WinSDKSetup.exe InstallerSha256: 2D1C2335BE6639464AC18A98FE55C96E5313608DE4EBFFB3CBA7ED5D113D994D ManifestType: installer -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.2454/Microsoft.WindowsSDK.10.0.26100.locale.en-US.yaml b/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.2454/Microsoft.WindowsSDK.10.0.26100.locale.en-US.yaml index 2a2ac3e0a787a..cbe0b22a1766c 100644 --- a/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.2454/Microsoft.WindowsSDK.10.0.26100.locale.en-US.yaml +++ b/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.2454/Microsoft.WindowsSDK.10.0.26100.locale.en-US.yaml @@ -1,5 +1,5 @@ -# Created using wingetcreate 1.9.2.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: Microsoft.WindowsSDK.10.0.26100 PackageVersion: 10.0.26100.2454 @@ -10,8 +10,19 @@ PublisherSupportUrl: https://support.microsoft.com/en-us PrivacyUrl: https://privacy.microsoft.com/en-us/privacystatement Author: Microsoft Corporation PackageName: Windows Software Development Kit - Windows 10.0.26100.2454 +# PackageUrl: License: Proprietary +# LicenseUrl: Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +# CopyrightUrl: ShortDescription: The Windows Software Development Kit (10.1.26100.2454) for Windows 11 provides the latest headers, libraries, metadata, and tools for building Windows apps. +# Description: +# Moniker: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: ManifestType: defaultLocale -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.2454/Microsoft.WindowsSDK.10.0.26100.yaml b/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.2454/Microsoft.WindowsSDK.10.0.26100.yaml index 7c7cdb8c58bd4..a0a20132114f3 100644 --- a/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.2454/Microsoft.WindowsSDK.10.0.26100.yaml +++ b/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.2454/Microsoft.WindowsSDK.10.0.26100.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.9.2.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: Microsoft.WindowsSDK.10.0.26100 PackageVersion: 10.0.26100.2454 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.4188/Microsoft.WindowsSDK.10.0.26100.installer.yaml b/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.4188/Microsoft.WindowsSDK.10.0.26100.installer.yaml index 0122f69b055f3..0bf06c86b2c04 100644 --- a/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.4188/Microsoft.WindowsSDK.10.0.26100.installer.yaml +++ b/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.4188/Microsoft.WindowsSDK.10.0.26100.installer.yaml @@ -1,5 +1,5 @@ -# Created using wingetcreate 1.9.2.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: Microsoft.WindowsSDK.10.0.26100 PackageVersion: 10.0.26100.4188 @@ -8,11 +8,13 @@ InstallerType: burn InstallerSwitches: Silent: /q SilentWithProgress: /q - Log: " " + Log: ' ' UpgradeBehavior: uninstallPrevious +AppsAndFeaturesEntries: +- DisplayVersion: 10.1.26100.4188 Installers: - Architecture: x86 - InstallerUrl: https://go.microsoft.com/fwlink/?linkid=2320455 - InstallerSha256: CD2F2D69A1913B70E77D52FFD3295BD30E19B3F865A59C3F9B6FAE8D852E961D + InstallerUrl: https://go.microsoft.com/fwlink/?linkid=2320455 + InstallerSha256: CD2F2D69A1913B70E77D52FFD3295BD30E19B3F865A59C3F9B6FAE8D852E961D ManifestType: installer -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.4188/Microsoft.WindowsSDK.10.0.26100.locale.en-US.yaml b/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.4188/Microsoft.WindowsSDK.10.0.26100.locale.en-US.yaml index e49a2a20972bc..980c88da46bf2 100644 --- a/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.4188/Microsoft.WindowsSDK.10.0.26100.locale.en-US.yaml +++ b/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.4188/Microsoft.WindowsSDK.10.0.26100.locale.en-US.yaml @@ -1,5 +1,5 @@ -# Created using wingetcreate 1.9.2.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: Microsoft.WindowsSDK.10.0.26100 PackageVersion: 10.0.26100.4188 @@ -10,8 +10,19 @@ PublisherSupportUrl: https://support.microsoft.com/en-us PrivacyUrl: https://privacy.microsoft.com/en-us/privacystatement Author: Microsoft Corporation PackageName: Windows Software Development Kit - Windows 10.0.26100.4188 +# PackageUrl: License: Proprietary +# LicenseUrl: Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +# CopyrightUrl: ShortDescription: The Windows Software Development Kit (10.1.26100.4188) for Windows 11 provides the latest headers, libraries, metadata, and tools for building Windows apps. +# Description: +# Moniker: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: ManifestType: defaultLocale -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.4188/Microsoft.WindowsSDK.10.0.26100.yaml b/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.4188/Microsoft.WindowsSDK.10.0.26100.yaml index 950826830bf51..35bede85e7da7 100644 --- a/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.4188/Microsoft.WindowsSDK.10.0.26100.yaml +++ b/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.4188/Microsoft.WindowsSDK.10.0.26100.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.9.2.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: Microsoft.WindowsSDK.10.0.26100 PackageVersion: 10.0.26100.4188 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.installer.yaml b/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.installer.yaml new file mode 100644 index 0000000000000..bfa9fed92f060 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.installer.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.MSIX +PackageVersion: 140.0.4 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.17763.0 +InstallerType: msix +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +PackageFamilyName: Mozilla.MozillaFirefox_jag0gd4e3s9p2 +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/multi/Firefox%20Setup%20140.0.4.msix + InstallerSha256: A6C8B1EA0F5042D0DEDCC66F9F0122F5BA24E065863CFF3418F6AE2D337F75F7 + SignatureSha256: 8922C3366732A1EA71B42A28068D16594FE3A298CE652BC19A3CAB38CD8F8594 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/multi/Firefox%20Setup%20140.0.4.msix + InstallerSha256: CBBE701FCA5067402B3091DAF0C20AB66154FD984B5CF12AF92F40BCA5CA9062 + SignatureSha256: 480F853ADFED0F381DB3A8B29F9D1C2DD01B9686900D4C8AA68B3905711BA5F9 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..f508b411617fc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.MSIX +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.da-DK.yaml new file mode 100644 index 0000000000000..33cf79a4c0288 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.MSIX +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.de-DE.yaml new file mode 100644 index 0000000000000..22197e2be6cf7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.MSIX +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.el-GR.yaml new file mode 100644 index 0000000000000..7f321e132bab9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.MSIX +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.en-GB.yaml new file mode 100644 index 0000000000000..1cf84706b2a02 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.MSIX +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.en-US.yaml new file mode 100644 index 0000000000000..17ff71fe1b10e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.MSIX +PackageVersion: 140.0.4 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (MSIX) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.es-MX.yaml new file mode 100644 index 0000000000000..f36ed085db99f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.MSIX +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.fr-FR.yaml new file mode 100644 index 0000000000000..e25b46b40731d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.MSIX +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.hu-HU.yaml new file mode 100644 index 0000000000000..24b3c86c24cb8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.MSIX +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.ja-JP.yaml new file mode 100644 index 0000000000000..f8ac0a69fff85 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.MSIX +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.nb-NO.yaml new file mode 100644 index 0000000000000..1883e51d0020c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.MSIX +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.ru-RU.yaml new file mode 100644 index 0000000000000..43f73adc25a62 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.MSIX +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.ta-IN.yaml new file mode 100644 index 0000000000000..1f18bdbe6cdb0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.MSIX +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.zh-CN.yaml new file mode 100644 index 0000000000000..11e2a02f4eec8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.MSIX +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.yaml b/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.yaml new file mode 100644 index 0000000000000..47ce0c366547c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/140.0.4/Mozilla.Firefox.MSIX.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.MSIX +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.installer.yaml b/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.installer.yaml new file mode 100644 index 0000000000000..a71a0b8cd2348 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/br/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 523AE8307835EB0934559EF2AD07EE75E3FCD7700DE82AB97CEFC8E3A9C75424 + ProductCode: Mozilla Firefox 140.0.4 (x86 br) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/br/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 40FE33222596D873D01C20EFD757B8C10A4A3B1AD409C13803AC368D1E523834 + ProductCode: Mozilla Firefox 140.0.4 (x64 br) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/br/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 62F9253579CC489BAFCF1A9964FB77B0568CE64C9FEB4DCC6D6C25A43E0DBEEB + ProductCode: Mozilla Firefox 140.0.4 (arm64 br) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..7df3b5cc79329 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.da-DK.yaml new file mode 100644 index 0000000000000..26cfb326f6fae --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.de-DE.yaml new file mode 100644 index 0000000000000..fc0f96d0704e1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.el-GR.yaml new file mode 100644 index 0000000000000..5dc015149ec4b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.en-GB.yaml new file mode 100644 index 0000000000000..d5bfe2f35523e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.en-US.yaml new file mode 100644 index 0000000000000..7438cdd842580 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 140.0.4 +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: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.es-MX.yaml new file mode 100644 index 0000000000000..3f525d15c250a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.fr-FR.yaml new file mode 100644 index 0000000000000..c7c6ab3e387b3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.hu-HU.yaml new file mode 100644 index 0000000000000..b4193c7ab5102 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.ja-JP.yaml new file mode 100644 index 0000000000000..63d04d3aa7cde --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.nb-NO.yaml new file mode 100644 index 0000000000000..b4e31e8cbabeb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.ru-RU.yaml new file mode 100644 index 0000000000000..f6744db2773ec --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.ta-IN.yaml new file mode 100644 index 0000000000000..99f3f67de40ed --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.zh-CN.yaml new file mode 100644 index 0000000000000..1a24ddbd978e1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.yaml b/manifests/m/Mozilla/Firefox/br/140.0.4/Mozilla.Firefox.br.yaml new file mode 100644 index 0000000000000..dd7ba69fbe86b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/140.0.4/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.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.installer.yaml b/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.installer.yaml new file mode 100644 index 0000000000000..d20c86c69bcbb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.da +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/da/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 7F09B6544E93E2AD3B7B167EE92798B7D7C5A1DB0110B1CA78CE7A8C77076B67 + ProductCode: Mozilla Firefox 140.0.4 (x86 da) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/da/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 64DDFE8376906B543D822704EFC4AA6C61DD769E60D0AF91FE97D9025A2F044D + ProductCode: Mozilla Firefox 140.0.4 (x64 da) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/da/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 45F30F81E4AAF19DD724014DEC73CB6DC0E31EC3E278D2FFF451E6143DF10D6E + ProductCode: Mozilla Firefox 140.0.4 (arm64 da) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..e4c0d392914e5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.da +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.da-DK.yaml new file mode 100644 index 0000000000000..c6b93f1ccd63a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.da +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.de-DE.yaml new file mode 100644 index 0000000000000..70c8465ae200a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.da +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.el-GR.yaml new file mode 100644 index 0000000000000..1c7ad1d7a4bc0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.da +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.en-GB.yaml new file mode 100644 index 0000000000000..23786e37a2e0a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.da +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.en-US.yaml new file mode 100644 index 0000000000000..eec5677e14731 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.da +PackageVersion: 140.0.4 +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: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.es-MX.yaml new file mode 100644 index 0000000000000..56c493fb4af7f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.da +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.fr-FR.yaml new file mode 100644 index 0000000000000..c69a496385b6b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.da +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.hu-HU.yaml new file mode 100644 index 0000000000000..2ebccb2d6057a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.da +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.ja-JP.yaml new file mode 100644 index 0000000000000..081e59ccd335f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.da +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.nb-NO.yaml new file mode 100644 index 0000000000000..62fac26695335 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.da +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.ru-RU.yaml new file mode 100644 index 0000000000000..eba5c5d2c8623 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.da +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.ta-IN.yaml new file mode 100644 index 0000000000000..64b037c00b008 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.da +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.zh-CN.yaml new file mode 100644 index 0000000000000..d643a631015be --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.da +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.yaml b/manifests/m/Mozilla/Firefox/da/140.0.4/Mozilla.Firefox.da.yaml new file mode 100644 index 0000000000000..f6289546f1e8f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/140.0.4/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.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.da +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.installer.yaml b/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.installer.yaml new file mode 100644 index 0000000000000..0df3e79da5bec --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eo +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/eo/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 6659DE9F6B38D5B1F82A0D6D6D044493DCE21A6E9AF2CF5428FD878E08FD2E80 + ProductCode: Mozilla Firefox 140.0.4 (x86 eo) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/eo/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 449D6721F865DA7CB30B6EE2D96F0A9A85467A003BCA1DCB78EC9D0EAC07C7FE + ProductCode: Mozilla Firefox 140.0.4 (x64 eo) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/eo/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 518EA55C48E547655728245FADFD108EBF2311DD6B36AD48A4E5BED99238480C + ProductCode: Mozilla Firefox 140.0.4 (arm64 eo) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..d5d97fd518ca1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eo +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.da-DK.yaml new file mode 100644 index 0000000000000..cc3d9c76116eb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eo +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.de-DE.yaml new file mode 100644 index 0000000000000..d599c04e56ecc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eo +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.el-GR.yaml new file mode 100644 index 0000000000000..3656e46b62eaf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eo +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.en-GB.yaml new file mode 100644 index 0000000000000..d9cebf56e4cdc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eo +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.en-US.yaml new file mode 100644 index 0000000000000..70c23ebd18933 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eo +PackageVersion: 140.0.4 +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: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.es-MX.yaml new file mode 100644 index 0000000000000..0c045d82e40e0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eo +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.fr-FR.yaml new file mode 100644 index 0000000000000..606e3494b9d30 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eo +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.hu-HU.yaml new file mode 100644 index 0000000000000..fa99273238d2e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eo +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.ja-JP.yaml new file mode 100644 index 0000000000000..3e10dfcc2a9b8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eo +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.nb-NO.yaml new file mode 100644 index 0000000000000..7760afc66e48f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eo +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.ru-RU.yaml new file mode 100644 index 0000000000000..a85466152c892 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eo +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.ta-IN.yaml new file mode 100644 index 0000000000000..210ad9e4fc731 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eo +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f79215bcbbc84 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eo +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.yaml b/manifests/m/Mozilla/Firefox/eo/140.0.4/Mozilla.Firefox.eo.yaml new file mode 100644 index 0000000000000..17d6417d4ea9a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eo/140.0.4/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.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eo +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.installer.yaml b/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.installer.yaml new file mode 100644 index 0000000000000..bbefc3a155f72 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-AR +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/es-AR/Firefox%20Setup%20140.0.4.exe + InstallerSha256: A4A5ED5CB17B9CB862F91216591FAD20E1DFCAEDD503334DF1F5B10EFD2F0BDB + ProductCode: Mozilla Firefox 140.0.4 (x86 es-AR) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/es-AR/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 0631EA004643E449DF5512D018998DA65C29ADF13988EB7CAC682B0AF41103A4 + ProductCode: Mozilla Firefox 140.0.4 (x64 es-AR) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/es-AR/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 44AD9A87325D6DB7D6AD953AF36D994601E59B735E24C7553D8DAA5A5B4130EB + ProductCode: Mozilla Firefox 140.0.4 (arm64 es-AR) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..57cd9c860476e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-AR +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.da-DK.yaml new file mode 100644 index 0000000000000..b497e1febe80a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-AR +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.de-DE.yaml new file mode 100644 index 0000000000000..7b8c2eaa284d3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-AR +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.el-GR.yaml new file mode 100644 index 0000000000000..d2f0e9da7e27f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-AR +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.en-GB.yaml new file mode 100644 index 0000000000000..1f769b41b56cf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-AR +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.en-US.yaml new file mode 100644 index 0000000000000..0629a79e4c06d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-AR +PackageVersion: 140.0.4 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (es-AR) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.es-MX.yaml new file mode 100644 index 0000000000000..a9b2302eb941c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-AR +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.fr-FR.yaml new file mode 100644 index 0000000000000..c3c13245641a1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-AR +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.hu-HU.yaml new file mode 100644 index 0000000000000..afcc97edefbb0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-AR +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.ja-JP.yaml new file mode 100644 index 0000000000000..3bbd838090c8f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-AR +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.nb-NO.yaml new file mode 100644 index 0000000000000..dab9fa94107b2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-AR +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.ru-RU.yaml new file mode 100644 index 0000000000000..cd1e83ad3d855 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-AR +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.ta-IN.yaml new file mode 100644 index 0000000000000..a3113b8186647 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-AR +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.zh-CN.yaml new file mode 100644 index 0000000000000..4853774a0a501 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-AR +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.yaml b/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.yaml new file mode 100644 index 0000000000000..f5b2b480fa91a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-AR/140.0.4/Mozilla.Firefox.es-AR.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-AR +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.installer.yaml b/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.installer.yaml new file mode 100644 index 0000000000000..3d3e817f0adf2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-ES +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/es-ES/Firefox%20Setup%20140.0.4.exe + InstallerSha256: F91A6318A91D9408577432ABDFCE9719909CE26FB4B25A6607CF60FD2FEE0B5D + ProductCode: Mozilla Firefox 140.0.4 (x86 es-ES) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/es-ES/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 1E329D615490A14BBDC668E58F5CF44B4060E1BFB1BB141EC3C42B0801E80E70 + ProductCode: Mozilla Firefox 140.0.4 (x64 es-ES) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/es-ES/Firefox%20Setup%20140.0.4.exe + InstallerSha256: FF835C1F28FAB8643FEEF86CC9DC6FF7F1095F685090A6351A2CDEDB9164129B + ProductCode: Mozilla Firefox 140.0.4 (arm64 es-ES) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..88ee7531bfbd0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-ES +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.da-DK.yaml new file mode 100644 index 0000000000000..0b165067c2f45 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-ES +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.de-DE.yaml new file mode 100644 index 0000000000000..fe13685f834b2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-ES +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.el-GR.yaml new file mode 100644 index 0000000000000..6dfdf331a7481 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-ES +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.en-GB.yaml new file mode 100644 index 0000000000000..4c0d9affbcad2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-ES +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.en-US.yaml new file mode 100644 index 0000000000000..71c1f3b384b8d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-ES +PackageVersion: 140.0.4 +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: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.es-MX.yaml new file mode 100644 index 0000000000000..997300b49a2ff --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-ES +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.fr-FR.yaml new file mode 100644 index 0000000000000..bafe8a3b03673 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-ES +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.hu-HU.yaml new file mode 100644 index 0000000000000..735e4c1661703 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-ES +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.ja-JP.yaml new file mode 100644 index 0000000000000..0412aa6b4f15b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-ES +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.nb-NO.yaml new file mode 100644 index 0000000000000..daa419bd144c7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-ES +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.ru-RU.yaml new file mode 100644 index 0000000000000..6717e49d0c0d2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-ES +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.ta-IN.yaml new file mode 100644 index 0000000000000..4562b4711b149 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-ES +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.zh-CN.yaml new file mode 100644 index 0000000000000..ebda8c275a7b0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-ES +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.yaml b/manifests/m/Mozilla/Firefox/es-ES/140.0.4/Mozilla.Firefox.es-ES.yaml new file mode 100644 index 0000000000000..c5866898be080 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-ES/140.0.4/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.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-ES +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.installer.yaml b/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.installer.yaml new file mode 100644 index 0000000000000..e4554870d03ff --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-MX +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/es-MX/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 4285F8522183CC77272C02A0F0C326726F3FC2042A7FE0EF037B7BF22E44806A + ProductCode: Mozilla Firefox 140.0.4 (x86 es-MX) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/es-MX/Firefox%20Setup%20140.0.4.exe + InstallerSha256: E198961E4A61357D9E9A58FBB71DA79D5E053D9B4732B8596274E8102FCAA2AF + ProductCode: Mozilla Firefox 140.0.4 (x64 es-MX) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/es-MX/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 322FBFCF5F84FDB052D3471B6B8FE6B0F7773EDACDA050C9D8A2111011777ACE + ProductCode: Mozilla Firefox 140.0.4 (arm64 es-MX) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..9407a4ce9cd0d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-MX +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.da-DK.yaml new file mode 100644 index 0000000000000..13ff10dc6a461 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-MX +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.de-DE.yaml new file mode 100644 index 0000000000000..5f4d61afb2a83 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-MX +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.el-GR.yaml new file mode 100644 index 0000000000000..effa68817320a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-MX +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.en-GB.yaml new file mode 100644 index 0000000000000..e587093349751 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-MX +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.en-US.yaml new file mode 100644 index 0000000000000..532c696aa4ab8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-MX +PackageVersion: 140.0.4 +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: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.es-MX.yaml new file mode 100644 index 0000000000000..8a4314f9b1c00 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-MX +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.fr-FR.yaml new file mode 100644 index 0000000000000..ccf1b4bbfb2a7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-MX +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.hu-HU.yaml new file mode 100644 index 0000000000000..6dd6369af2a4f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-MX +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.ja-JP.yaml new file mode 100644 index 0000000000000..347eab42028d9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-MX +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.nb-NO.yaml new file mode 100644 index 0000000000000..f895cab091332 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-MX +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.ru-RU.yaml new file mode 100644 index 0000000000000..7af7d71513365 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-MX +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.ta-IN.yaml new file mode 100644 index 0000000000000..c554caac709aa --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-MX +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.zh-CN.yaml new file mode 100644 index 0000000000000..7ed0c4fbe94c0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-MX +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.yaml b/manifests/m/Mozilla/Firefox/es-MX/140.0.4/Mozilla.Firefox.es-MX.yaml new file mode 100644 index 0000000000000..1a3068d882f2e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/140.0.4/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.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-MX +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.installer.yaml b/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.installer.yaml new file mode 100644 index 0000000000000..0498cd8a56dcf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/et/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 73ED1136F11D3C9419CA69A1B7B7E5DD045AEA6C4299FF98D60CCF6903F6F5D3 + ProductCode: Mozilla Firefox 140.0.4 (x86 et) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/et/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 884D3507FB08D0B6E147D6F621935069C55CC8F061EA13764ED5BAB465D0849F + ProductCode: Mozilla Firefox 140.0.4 (x64 et) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/et/Firefox%20Setup%20140.0.4.exe + InstallerSha256: DC30FF5127919C29C1114849B28E77BD50BB9FA3A643D46636CBE68CFC8F8DF6 + ProductCode: Mozilla Firefox 140.0.4 (arm64 et) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..8d582a63bce9b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.da-DK.yaml new file mode 100644 index 0000000000000..e13ab755ade14 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.de-DE.yaml new file mode 100644 index 0000000000000..360b53e7d659a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.el-GR.yaml new file mode 100644 index 0000000000000..b0f0904aa39bf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.en-GB.yaml new file mode 100644 index 0000000000000..e30f2a582f470 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.en-US.yaml new file mode 100644 index 0000000000000..fc2c481d3b9e3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 140.0.4 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (et) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.es-MX.yaml new file mode 100644 index 0000000000000..8dc78c3e0bf52 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.fr-FR.yaml new file mode 100644 index 0000000000000..e19315f5bdb02 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.hu-HU.yaml new file mode 100644 index 0000000000000..89ade27c33127 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.ja-JP.yaml new file mode 100644 index 0000000000000..44a19b0b94c74 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.nb-NO.yaml new file mode 100644 index 0000000000000..e4b7612318720 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.ru-RU.yaml new file mode 100644 index 0000000000000..e1c723a662257 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.ta-IN.yaml new file mode 100644 index 0000000000000..412e821583eba --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.zh-CN.yaml new file mode 100644 index 0000000000000..8d8a28f6e3de1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.yaml b/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.yaml new file mode 100644 index 0000000000000..b64b295be67cd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/140.0.4/Mozilla.Firefox.et.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.installer.yaml b/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.installer.yaml new file mode 100644 index 0000000000000..707792b31460c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fa +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/fa/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 2331856DBBA05764083B4033C6B03BF30548A801635353278229A18FAEDB539B + ProductCode: Mozilla Firefox 140.0.4 (x86 fa) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/fa/Firefox%20Setup%20140.0.4.exe + InstallerSha256: A17A014B9EC5D211E9ABEBAF43B9489A439FE57AEDFD18867541848E34C035D6 + ProductCode: Mozilla Firefox 140.0.4 (x64 fa) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/fa/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 399F5DEFEED81077AEDC3D636034BB58AD1A4FAEED39BF3719473B1F92CA8CE0 + ProductCode: Mozilla Firefox 140.0.4 (arm64 fa) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..7e37474222e6e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fa +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.da-DK.yaml new file mode 100644 index 0000000000000..50aa82b2c39d8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fa +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.de-DE.yaml new file mode 100644 index 0000000000000..52c68f715c522 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fa +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.el-GR.yaml new file mode 100644 index 0000000000000..0b4ba124687ac --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fa +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.en-GB.yaml new file mode 100644 index 0000000000000..b7d4f7156539e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fa +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.en-US.yaml new file mode 100644 index 0000000000000..6dceed7547e31 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fa +PackageVersion: 140.0.4 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (fa) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.es-MX.yaml new file mode 100644 index 0000000000000..f5eaee49b0c49 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fa +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.fr-FR.yaml new file mode 100644 index 0000000000000..da0df835c2d7b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fa +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.hu-HU.yaml new file mode 100644 index 0000000000000..fedb5e63f452f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fa +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.ja-JP.yaml new file mode 100644 index 0000000000000..66bca5ed2dc69 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fa +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.nb-NO.yaml new file mode 100644 index 0000000000000..bd208350f9f93 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fa +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.ru-RU.yaml new file mode 100644 index 0000000000000..b0371b460d771 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fa +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.ta-IN.yaml new file mode 100644 index 0000000000000..a24af6764f38d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fa +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.zh-CN.yaml new file mode 100644 index 0000000000000..d398fccd7a4b7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fa +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.yaml b/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.yaml new file mode 100644 index 0000000000000..a9c01c91e6057 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fa/140.0.4/Mozilla.Firefox.fa.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fa +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.installer.yaml b/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.installer.yaml new file mode 100644 index 0000000000000..048981eeba67f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/ff/Firefox%20Setup%20140.0.4.exe + InstallerSha256: A79DE0AB32C01C6E6DB899FAC06547BF77C18C89580020CE9F7109944DD0BA48 + ProductCode: Mozilla Firefox 140.0.4 (x86 ff) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/ff/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 0E2748E526A7228FDFBF8B305ABB8F7E2EA117DFAE91B751A1AD8AF158F441CE + ProductCode: Mozilla Firefox 140.0.4 (x64 ff) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/ff/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 81A09B69577715AE18690D1BAB12BF0075C070D90DCFE324640D19555D8DCE3B + ProductCode: Mozilla Firefox 140.0.4 (arm64 ff) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..aaff4851278b1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.da-DK.yaml new file mode 100644 index 0000000000000..55a2971142db5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.de-DE.yaml new file mode 100644 index 0000000000000..55311a1e26cfc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.el-GR.yaml new file mode 100644 index 0000000000000..c5b5003f382bb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.en-GB.yaml new file mode 100644 index 0000000000000..612792c9328ba --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.en-US.yaml new file mode 100644 index 0000000000000..66ef717e96337 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 140.0.4 +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: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.es-MX.yaml new file mode 100644 index 0000000000000..2ce4c272c8d78 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.fr-FR.yaml new file mode 100644 index 0000000000000..0d7a1badbe6d5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.hu-HU.yaml new file mode 100644 index 0000000000000..2a2cce5441ece --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.ja-JP.yaml new file mode 100644 index 0000000000000..eb90ca00a999e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.nb-NO.yaml new file mode 100644 index 0000000000000..6463d1b6fe4e0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.ru-RU.yaml new file mode 100644 index 0000000000000..bb56c6b9dff93 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.ta-IN.yaml new file mode 100644 index 0000000000000..74cb1ad098ac8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.zh-CN.yaml new file mode 100644 index 0000000000000..77fbfa252d6a2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.yaml b/manifests/m/Mozilla/Firefox/ff/140.0.4/Mozilla.Firefox.ff.yaml new file mode 100644 index 0000000000000..12a346057358d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/140.0.4/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.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.installer.yaml b/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.installer.yaml new file mode 100644 index 0000000000000..353ce067974b9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fy-NL +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/fy-NL/Firefox%20Setup%20140.0.4.exe + InstallerSha256: EF3AEDA383A374C5FDB5BD896C92172833CF84C40FDE945B9D76BF9A93D17CC8 + ProductCode: Mozilla Firefox 140.0.4 (x86 fy-NL) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/fy-NL/Firefox%20Setup%20140.0.4.exe + InstallerSha256: D22FBD1111D542197FB435AC69D4DA1C3B3048B146B6D048E0F8E54B85F386F1 + ProductCode: Mozilla Firefox 140.0.4 (x64 fy-NL) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/fy-NL/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 5E0D34DE180A0E785F6938C158BC852CF4C7C13BC269A5392FE5E00FB15B9F9C + ProductCode: Mozilla Firefox 140.0.4 (arm64 fy-NL) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..02fd1c454dfab --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fy-NL +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.da-DK.yaml new file mode 100644 index 0000000000000..fbf81e1553c75 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fy-NL +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.de-DE.yaml new file mode 100644 index 0000000000000..3bc78d157adb3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fy-NL +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.el-GR.yaml new file mode 100644 index 0000000000000..c5ef729cac8d3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fy-NL +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.en-GB.yaml new file mode 100644 index 0000000000000..c551f22a89d92 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fy-NL +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.en-US.yaml new file mode 100644 index 0000000000000..11af3ea41a2d1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fy-NL +PackageVersion: 140.0.4 +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 (fy-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: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.es-MX.yaml new file mode 100644 index 0000000000000..57399bd3023da --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fy-NL +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.fr-FR.yaml new file mode 100644 index 0000000000000..1c1ed68fbba2a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fy-NL +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.hu-HU.yaml new file mode 100644 index 0000000000000..de83fc34285a9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fy-NL +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.ja-JP.yaml new file mode 100644 index 0000000000000..acc3854bd6e97 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fy-NL +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.nb-NO.yaml new file mode 100644 index 0000000000000..2481a19674f31 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fy-NL +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.ru-RU.yaml new file mode 100644 index 0000000000000..9e360cfd989a1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fy-NL +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.ta-IN.yaml new file mode 100644 index 0000000000000..07f3351872593 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fy-NL +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.zh-CN.yaml new file mode 100644 index 0000000000000..e57e4c395aec5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fy-NL +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.yaml b/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.yaml new file mode 100644 index 0000000000000..e4f2931f44afc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fy-NL/140.0.4/Mozilla.Firefox.fy-NL.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fy-NL +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.installer.yaml b/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.installer.yaml new file mode 100644 index 0000000000000..6d8f15ef57cd5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/gd/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 0DB107F9C433F2F6C5CD2A8CAD7D6CE1C614D1217F97C9831149B09F5D7C5923 + ProductCode: Mozilla Firefox 140.0.4 (x86 gd) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/gd/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 295D0BEB4D8B07EA6CA862B9003E99BD28AFC8E841CA88FFB7B7CECDD4B1ED1A + ProductCode: Mozilla Firefox 140.0.4 (x64 gd) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/gd/Firefox%20Setup%20140.0.4.exe + InstallerSha256: B9699D055C13883B2226A8E8F73C72A9B78655361F19F8269E6C1DE8A90C69E3 + ProductCode: Mozilla Firefox 140.0.4 (arm64 gd) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..f6484739c3b55 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.da-DK.yaml new file mode 100644 index 0000000000000..5b6b51af7c779 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.de-DE.yaml new file mode 100644 index 0000000000000..1f947ca296a7b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.el-GR.yaml new file mode 100644 index 0000000000000..4a24e9198e90d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.en-GB.yaml new file mode 100644 index 0000000000000..1dc6113921711 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.en-US.yaml new file mode 100644 index 0000000000000..6829cf44826d1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 140.0.4 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (gd) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.es-MX.yaml new file mode 100644 index 0000000000000..61c2f8696f2ad --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.fr-FR.yaml new file mode 100644 index 0000000000000..fe7417c33dde4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.hu-HU.yaml new file mode 100644 index 0000000000000..07d5663fe5b50 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.ja-JP.yaml new file mode 100644 index 0000000000000..10354eff68886 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.nb-NO.yaml new file mode 100644 index 0000000000000..4f9e64098d897 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.ru-RU.yaml new file mode 100644 index 0000000000000..62a7825a3d989 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.ta-IN.yaml new file mode 100644 index 0000000000000..9c530f5c7a169 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.zh-CN.yaml new file mode 100644 index 0000000000000..682607662cb21 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.yaml b/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.yaml new file mode 100644 index 0000000000000..5ea55c6673890 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/140.0.4/Mozilla.Firefox.gd.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.installer.yaml b/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.installer.yaml new file mode 100644 index 0000000000000..3dffc20a4911d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hr +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/hr/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 49EF55AD37E244AC5433F0306F35C3F701C90A802E222F02C240EA9873DE2B1E + ProductCode: Mozilla Firefox 140.0.4 (x86 hr) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/hr/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 88D756E94D260356F12CD66CEBF39F55C400CB7554BB15C14AC606EA4F2C82E9 + ProductCode: Mozilla Firefox 140.0.4 (x64 hr) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/hr/Firefox%20Setup%20140.0.4.exe + InstallerSha256: A2BB32AF6C63A156912453219F487034D4829FAA9F28192D507D66D66DFE9A6C + ProductCode: Mozilla Firefox 140.0.4 (arm64 hr) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..6fa743e27c8dd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hr +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.da-DK.yaml new file mode 100644 index 0000000000000..2baadfc8b5894 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hr +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.de-DE.yaml new file mode 100644 index 0000000000000..96d530071f3f1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hr +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.el-GR.yaml new file mode 100644 index 0000000000000..6dda7d6f6feac --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hr +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.en-GB.yaml new file mode 100644 index 0000000000000..de3cc8ab34b38 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hr +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.en-US.yaml new file mode 100644 index 0000000000000..48e6f9a6a88d6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hr +PackageVersion: 140.0.4 +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: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.es-MX.yaml new file mode 100644 index 0000000000000..1ee149466a087 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hr +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.fr-FR.yaml new file mode 100644 index 0000000000000..4515da33118fc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hr +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.hu-HU.yaml new file mode 100644 index 0000000000000..42e1ef9c40a67 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hr +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.ja-JP.yaml new file mode 100644 index 0000000000000..a7cc9d804d6c4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hr +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.nb-NO.yaml new file mode 100644 index 0000000000000..5ed6bbb5736f3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hr +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.ru-RU.yaml new file mode 100644 index 0000000000000..3d8302f8f586b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hr +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.ta-IN.yaml new file mode 100644 index 0000000000000..030eae6d544e5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hr +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.zh-CN.yaml new file mode 100644 index 0000000000000..285599d9dc725 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hr +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.yaml b/manifests/m/Mozilla/Firefox/hr/140.0.4/Mozilla.Firefox.hr.yaml new file mode 100644 index 0000000000000..9223af3f8d898 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hr/140.0.4/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.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hr +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.installer.yaml b/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.installer.yaml new file mode 100644 index 0000000000000..1ca5a67c09a86 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hy-AM +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/hy-AM/Firefox%20Setup%20140.0.4.exe + InstallerSha256: D4D6D22A9ADF5108D6B33AF99C65361C241C020347C140A0F3640ACA93EA3FAD + ProductCode: Mozilla Firefox 140.0.4 (x86 hy-AM) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/hy-AM/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 8FA855827BC12DE803087D1C127B740E79834B1615156B1A50273A6D8080448D + ProductCode: Mozilla Firefox 140.0.4 (x64 hy-AM) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/hy-AM/Firefox%20Setup%20140.0.4.exe + InstallerSha256: D278EE0DE0B80F54C09B4E9B34F224EFE62C5A56F0DDC6F9EF776826805C443B + ProductCode: Mozilla Firefox 140.0.4 (arm64 hy-AM) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..1119fb0fb48c7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hy-AM +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.da-DK.yaml new file mode 100644 index 0000000000000..71927f6e2273c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hy-AM +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.de-DE.yaml new file mode 100644 index 0000000000000..cbdd6231e61a8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hy-AM +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.el-GR.yaml new file mode 100644 index 0000000000000..7f0ef687402a3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hy-AM +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.en-GB.yaml new file mode 100644 index 0000000000000..a998acb2dcc41 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hy-AM +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.en-US.yaml new file mode 100644 index 0000000000000..85dc25c7d1720 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hy-AM +PackageVersion: 140.0.4 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (hy-AM) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.es-MX.yaml new file mode 100644 index 0000000000000..bcece4f49eb0f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hy-AM +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.fr-FR.yaml new file mode 100644 index 0000000000000..e3fab2587d4f5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hy-AM +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.hu-HU.yaml new file mode 100644 index 0000000000000..2bbbe0d856332 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hy-AM +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.ja-JP.yaml new file mode 100644 index 0000000000000..8989407ef587f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hy-AM +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.nb-NO.yaml new file mode 100644 index 0000000000000..80180b553e75f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hy-AM +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.ru-RU.yaml new file mode 100644 index 0000000000000..d8688d1e78092 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hy-AM +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.ta-IN.yaml new file mode 100644 index 0000000000000..ba51c52dfd8cf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hy-AM +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.zh-CN.yaml new file mode 100644 index 0000000000000..b1608bcbfac7d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hy-AM +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.yaml b/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.yaml new file mode 100644 index 0000000000000..6babd77f91a08 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hy-AM/140.0.4/Mozilla.Firefox.hy-AM.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hy-AM +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.installer.yaml b/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.installer.yaml new file mode 100644 index 0000000000000..624a4bc82f14f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.is +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/is/Firefox%20Setup%20140.0.4.exe + InstallerSha256: BD32F35AA072B46E97B2F9BB5E523DD2A30BB56C417B51FFDED9CB42B6E9A9E9 + ProductCode: Mozilla Firefox 140.0.4 (x86 is) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/is/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 71A14E7114393A258CF9AE710596B3EB7E32E9CECBFB46FF0C732D6FB2F712A1 + ProductCode: Mozilla Firefox 140.0.4 (x64 is) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/is/Firefox%20Setup%20140.0.4.exe + InstallerSha256: BB4594DD483F62A025FF87371A5D465C42EFA7E296E95C04ADEF0A2B23CAFBC4 + ProductCode: Mozilla Firefox 140.0.4 (arm64 is) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..41bade59ea879 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.is +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.da-DK.yaml new file mode 100644 index 0000000000000..71453062b3d7b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.is +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.de-DE.yaml new file mode 100644 index 0000000000000..28bae10a2da27 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.is +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.el-GR.yaml new file mode 100644 index 0000000000000..845d41b0f157a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.is +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.en-GB.yaml new file mode 100644 index 0000000000000..8191713e819eb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.is +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.en-US.yaml new file mode 100644 index 0000000000000..6d25d0b586e5f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.is +PackageVersion: 140.0.4 +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: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.es-MX.yaml new file mode 100644 index 0000000000000..5e2c2f4b53023 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.is +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.fr-FR.yaml new file mode 100644 index 0000000000000..ced1ddf655338 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.is +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.hu-HU.yaml new file mode 100644 index 0000000000000..4d0850de6eb26 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.is +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.ja-JP.yaml new file mode 100644 index 0000000000000..3d9d739ef2bb6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.is +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.nb-NO.yaml new file mode 100644 index 0000000000000..82ad14072b20a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.is +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.ru-RU.yaml new file mode 100644 index 0000000000000..f477f79baa684 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.is +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.ta-IN.yaml new file mode 100644 index 0000000000000..0a772001c7160 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.is +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.zh-CN.yaml new file mode 100644 index 0000000000000..2da2fb0b102b4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.is +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.yaml b/manifests/m/Mozilla/Firefox/is/140.0.4/Mozilla.Firefox.is.yaml new file mode 100644 index 0000000000000..3f1893c5e132d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/140.0.4/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.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.is +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.installer.yaml b/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.installer.yaml new file mode 100644 index 0000000000000..8b46697cfc6a3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ja +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/ja/Firefox%20Setup%20140.0.4.exe + InstallerSha256: ED115289C236267888ED4F2176951C38C1B2995EAFF102964F8D38B201515CFF + ProductCode: Mozilla Firefox 140.0.4 (x86 ja) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/ja/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 5A918FF518318E2BB60CE0E28619EB1B1F0449F9BEB476223FA8F90EBAB4DD60 + ProductCode: Mozilla Firefox 140.0.4 (x64 ja) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/ja/Firefox%20Setup%20140.0.4.exe + InstallerSha256: C0B66A65C86B7418CE78387B867D6BECC56EF1FED3EAC9D21050A3A9FD13C5CC + ProductCode: Mozilla Firefox 140.0.4 (arm64 ja) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..7a70fa9d7c464 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ja +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.da-DK.yaml new file mode 100644 index 0000000000000..89b6b174e31d1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ja +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.de-DE.yaml new file mode 100644 index 0000000000000..5d8640ef28f76 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ja +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.el-GR.yaml new file mode 100644 index 0000000000000..83543248fba79 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ja +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.en-GB.yaml new file mode 100644 index 0000000000000..1ad817078f7ee --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ja +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.en-US.yaml new file mode 100644 index 0000000000000..6a54b19756a2f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ja +PackageVersion: 140.0.4 +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 (ja) +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: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.es-MX.yaml new file mode 100644 index 0000000000000..0a69b784ce51a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ja +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.fr-FR.yaml new file mode 100644 index 0000000000000..f2a6cc344b34e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ja +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.hu-HU.yaml new file mode 100644 index 0000000000000..6ccb63b20d0f2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ja +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.ja-JP.yaml new file mode 100644 index 0000000000000..607cff533d4dd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ja +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.nb-NO.yaml new file mode 100644 index 0000000000000..f8ce608c19ea4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ja +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.ru-RU.yaml new file mode 100644 index 0000000000000..f21f78f4529d2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ja +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.ta-IN.yaml new file mode 100644 index 0000000000000..41657b4e74328 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ja +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.zh-CN.yaml new file mode 100644 index 0000000000000..eac507c749158 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ja +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.yaml b/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.yaml new file mode 100644 index 0000000000000..b4eb153a9bdd0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ja/140.0.4/Mozilla.Firefox.ja.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ja +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.installer.yaml b/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.installer.yaml new file mode 100644 index 0000000000000..3ed0e7d635902 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ka +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/ka/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 49357F90B98820CEB185558B7B4B63A650A89C22548BC3B94F807958D7FA6CA8 + ProductCode: Mozilla Firefox 140.0.4 (x86 ka) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/ka/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 5D2841BE10C8E9561FBC336A6F9869D91A06850360BB7FA86DD2C04743797F47 + ProductCode: Mozilla Firefox 140.0.4 (x64 ka) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/ka/Firefox%20Setup%20140.0.4.exe + InstallerSha256: D32BC3516504B54B6618DA37C3A2A681B4C80DBBC054BB47CB4AABA496F8E59E + ProductCode: Mozilla Firefox 140.0.4 (arm64 ka) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..a36c0365b3623 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ka +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.da-DK.yaml new file mode 100644 index 0000000000000..024d2e3ccff70 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ka +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.de-DE.yaml new file mode 100644 index 0000000000000..7c4ce45fe0bdf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ka +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.el-GR.yaml new file mode 100644 index 0000000000000..2b5f802882993 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ka +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.en-GB.yaml new file mode 100644 index 0000000000000..b0ca10b9239e9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ka +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.en-US.yaml new file mode 100644 index 0000000000000..69066ff768fc1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ka +PackageVersion: 140.0.4 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (ka) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.es-MX.yaml new file mode 100644 index 0000000000000..493b2eff0075b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ka +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.fr-FR.yaml new file mode 100644 index 0000000000000..6b2599fb7398e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ka +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.hu-HU.yaml new file mode 100644 index 0000000000000..7ff414a66b86e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ka +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.ja-JP.yaml new file mode 100644 index 0000000000000..2e434f4b56927 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ka +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.nb-NO.yaml new file mode 100644 index 0000000000000..25be63d8b7030 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ka +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.ru-RU.yaml new file mode 100644 index 0000000000000..d4a87d9da43e1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ka +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.ta-IN.yaml new file mode 100644 index 0000000000000..05b31add951d4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ka +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.zh-CN.yaml new file mode 100644 index 0000000000000..4ec5c9330bc73 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ka +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.yaml b/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.yaml new file mode 100644 index 0000000000000..daaab72ea2dfa --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ka/140.0.4/Mozilla.Firefox.ka.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ka +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.installer.yaml b/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.installer.yaml new file mode 100644 index 0000000000000..e58720daaa155 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kab +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/kab/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 6F68A30B325E2B21ADD70CE730AA9823E3588749DCE447AEF08F59BF9E2BDC94 + ProductCode: Mozilla Firefox 140.0.4 (x86 kab) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/kab/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 641DABC7D6B36CDAC8C9674DDB3C4C326ADBF0200430F02DE4696C4B521E6E93 + ProductCode: Mozilla Firefox 140.0.4 (x64 kab) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/kab/Firefox%20Setup%20140.0.4.exe + InstallerSha256: D4E56E8BEAB368DC358A7D115599E29D1B43D0D91B79BD539086E53A378603D8 + ProductCode: Mozilla Firefox 140.0.4 (arm64 kab) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..1f9da678e88dc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kab +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.da-DK.yaml new file mode 100644 index 0000000000000..3422c81208ae9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kab +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.de-DE.yaml new file mode 100644 index 0000000000000..1e0d4912ead45 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kab +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.el-GR.yaml new file mode 100644 index 0000000000000..b71baddca335e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kab +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.en-GB.yaml new file mode 100644 index 0000000000000..f34e05b428324 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kab +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.en-US.yaml new file mode 100644 index 0000000000000..33d990f556220 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kab +PackageVersion: 140.0.4 +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 (kab) +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: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.es-MX.yaml new file mode 100644 index 0000000000000..de077d1a35d1d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kab +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.fr-FR.yaml new file mode 100644 index 0000000000000..74ac5c62b6a24 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kab +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.hu-HU.yaml new file mode 100644 index 0000000000000..efc0ea9bed666 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kab +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.ja-JP.yaml new file mode 100644 index 0000000000000..8ec85324932c7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kab +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.nb-NO.yaml new file mode 100644 index 0000000000000..49d7f51faed0e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kab +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.ru-RU.yaml new file mode 100644 index 0000000000000..605ab552c8bf1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kab +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.ta-IN.yaml new file mode 100644 index 0000000000000..a1eb4e621f442 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kab +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.zh-CN.yaml new file mode 100644 index 0000000000000..e9a24d75db9ef --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kab +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.yaml b/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.yaml new file mode 100644 index 0000000000000..16f3dfbbc5bc9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kab/140.0.4/Mozilla.Firefox.kab.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kab +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.installer.yaml b/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.installer.yaml new file mode 100644 index 0000000000000..f527c938a0448 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ko +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/ko/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 17E64051BC3AF417BD3D377EEEF209E832A4A4AE5EA88E3D287D1551433B98FB + ProductCode: Mozilla Firefox 140.0.4 (x86 ko) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/ko/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 6D11C6744EA4047190498BA0EA8C875721C200DEA0B121A2551C48F34E6CD104 + ProductCode: Mozilla Firefox 140.0.4 (x64 ko) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/ko/Firefox%20Setup%20140.0.4.exe + InstallerSha256: A54B67699A10158295AD3D7EB7219ADA927E7EE8F1AF4ED20FC6446AF0CA904B + ProductCode: Mozilla Firefox 140.0.4 (arm64 ko) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..d6c4d2d8f6501 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ko +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.da-DK.yaml new file mode 100644 index 0000000000000..93e9a799a706a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ko +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.de-DE.yaml new file mode 100644 index 0000000000000..f6d892c58635b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ko +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.el-GR.yaml new file mode 100644 index 0000000000000..97665507d2a8a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ko +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.en-GB.yaml new file mode 100644 index 0000000000000..0c857d54578aa --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ko +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.en-US.yaml new file mode 100644 index 0000000000000..92dace278c6a7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ko +PackageVersion: 140.0.4 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (ko) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.es-MX.yaml new file mode 100644 index 0000000000000..e0bf6d943b9fc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ko +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.fr-FR.yaml new file mode 100644 index 0000000000000..f2af032c99b74 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ko +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.hu-HU.yaml new file mode 100644 index 0000000000000..9f9c0a1d9bc4e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ko +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.ja-JP.yaml new file mode 100644 index 0000000000000..bd94e0811cafc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ko +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.nb-NO.yaml new file mode 100644 index 0000000000000..813475329a840 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ko +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.ru-RU.yaml new file mode 100644 index 0000000000000..ce83d7576dd00 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ko +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.ta-IN.yaml new file mode 100644 index 0000000000000..b04864a74befd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ko +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f5b636bd50359 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ko +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.yaml b/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.yaml new file mode 100644 index 0000000000000..1e7fbca195494 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/140.0.4/Mozilla.Firefox.ko.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ko +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.installer.yaml b/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.installer.yaml new file mode 100644 index 0000000000000..ad7ed2ecf59f2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.lij +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/lij/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 057597E35037A1C8701E70614B65B0711B32E58B99480D589A24676AC4C50940 + ProductCode: Mozilla Firefox 140.0.4 (x86 lij) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/lij/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 454E44527ED78EA2DD50C0B1B8849B61D227F7178F2E43A9B7F3E119F175C61E + ProductCode: Mozilla Firefox 140.0.4 (x64 lij) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/lij/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 1174DA0AB51FF0FEAEF3CC289644F15EEA3DBAF545CBFE627CA990F24845C26E + ProductCode: Mozilla Firefox 140.0.4 (arm64 lij) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..3f3fa325c8391 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.lij +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.da-DK.yaml new file mode 100644 index 0000000000000..862520429d311 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.lij +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.de-DE.yaml new file mode 100644 index 0000000000000..9658865d6323d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.lij +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.el-GR.yaml new file mode 100644 index 0000000000000..badbe67efee66 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.lij +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.en-GB.yaml new file mode 100644 index 0000000000000..e60a885a44026 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.lij +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.en-US.yaml new file mode 100644 index 0000000000000..ea9faf983dc97 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.lij +PackageVersion: 140.0.4 +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 (lij) +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: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.es-MX.yaml new file mode 100644 index 0000000000000..f151f09fedce1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.lij +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.fr-FR.yaml new file mode 100644 index 0000000000000..290a6fc4fdc22 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.lij +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.hu-HU.yaml new file mode 100644 index 0000000000000..4fc83c562a774 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.lij +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.ja-JP.yaml new file mode 100644 index 0000000000000..d32041c05f58e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.lij +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.nb-NO.yaml new file mode 100644 index 0000000000000..f8d58e8dcd79d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.lij +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.ru-RU.yaml new file mode 100644 index 0000000000000..5558c29df3ae4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.lij +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.ta-IN.yaml new file mode 100644 index 0000000000000..a8b991d120a9c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.lij +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f79d94fb07f8f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.lij +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.yaml b/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.yaml new file mode 100644 index 0000000000000..f5c2368d1c8ef --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lij/140.0.4/Mozilla.Firefox.lij.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.lij +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.installer.yaml b/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.installer.yaml new file mode 100644 index 0000000000000..b2f2c8251c684 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.lt +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/lt/Firefox%20Setup%20140.0.4.exe + InstallerSha256: F99C66F84DD763ED42AD7652372862B42A93D35927F0EABCFEA7A5CB0807C37C + ProductCode: Mozilla Firefox 140.0.4 (x86 lt) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/lt/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 212C0C3DC0AD87727B027B4EF1751D6BCD33DFCCA1F2BEEF58CA91A015F5CEF9 + ProductCode: Mozilla Firefox 140.0.4 (x64 lt) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/lt/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 6502614EE6BAA1D616D929F420AEDDC6E1AA5EFAC8766212E0F1690C7C55A00D + ProductCode: Mozilla Firefox 140.0.4 (arm64 lt) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..2db11e5d97f0b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.lt +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.da-DK.yaml new file mode 100644 index 0000000000000..860215d66d845 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.lt +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.de-DE.yaml new file mode 100644 index 0000000000000..f1a926ab4dd43 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.lt +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.el-GR.yaml new file mode 100644 index 0000000000000..5605aee08aeda --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.lt +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.en-GB.yaml new file mode 100644 index 0000000000000..5de9ba3a28ea7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.lt +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.en-US.yaml new file mode 100644 index 0000000000000..1594ffe511714 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.lt +PackageVersion: 140.0.4 +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 (lt) +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: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.es-MX.yaml new file mode 100644 index 0000000000000..66548a5c5b2c5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.lt +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.fr-FR.yaml new file mode 100644 index 0000000000000..51f756f95af3e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.lt +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.hu-HU.yaml new file mode 100644 index 0000000000000..9328dac8db856 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.lt +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.ja-JP.yaml new file mode 100644 index 0000000000000..65cae6cd271d9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.lt +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.nb-NO.yaml new file mode 100644 index 0000000000000..480f30a4a5e17 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.lt +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.ru-RU.yaml new file mode 100644 index 0000000000000..3e42dffa723df --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.lt +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.ta-IN.yaml new file mode 100644 index 0000000000000..56965de6a5476 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.lt +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.zh-CN.yaml new file mode 100644 index 0000000000000..d15b771d9cda2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.lt +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.yaml b/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.yaml new file mode 100644 index 0000000000000..2f49225ad44bb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lt/140.0.4/Mozilla.Firefox.lt.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.lt +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.installer.yaml b/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.installer.yaml new file mode 100644 index 0000000000000..95097a82bca43 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.my +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/my/Firefox%20Setup%20140.0.4.exe + InstallerSha256: CCA73F5C70FC86A258332E469F48DB8FC47E369AD447DF29A299BFC218E013E3 + ProductCode: Mozilla Firefox 140.0.4 (x86 my) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/my/Firefox%20Setup%20140.0.4.exe + InstallerSha256: A2F252F3154C3CC3B826398E6D0A3180F4BD1C82721D26A3CF397F7E4D0E735A + ProductCode: Mozilla Firefox 140.0.4 (x64 my) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/my/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 0A2769BF19604392B1DA23B5655FD861ACFEA4D8A9A4AFDD8DD5414AB185E570 + ProductCode: Mozilla Firefox 140.0.4 (arm64 my) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..2f99223757882 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.my +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.da-DK.yaml new file mode 100644 index 0000000000000..f07c67e42deb9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.my +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.de-DE.yaml new file mode 100644 index 0000000000000..a96f5e74c444d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.my +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.el-GR.yaml new file mode 100644 index 0000000000000..8eac4f7807dea --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.my +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.en-GB.yaml new file mode 100644 index 0000000000000..94b5127e5c5bd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.my +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.en-US.yaml new file mode 100644 index 0000000000000..d0e2aab2024f7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.my +PackageVersion: 140.0.4 +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: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.es-MX.yaml new file mode 100644 index 0000000000000..aa8495db12fff --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.my +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.fr-FR.yaml new file mode 100644 index 0000000000000..46e400b76ac95 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.my +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.hu-HU.yaml new file mode 100644 index 0000000000000..f08f1a151594f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.my +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.ja-JP.yaml new file mode 100644 index 0000000000000..b5f1281e6dd87 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.my +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.nb-NO.yaml new file mode 100644 index 0000000000000..83a81910cdb2e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.my +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.ru-RU.yaml new file mode 100644 index 0000000000000..9215c1903adf4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.my +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.ta-IN.yaml new file mode 100644 index 0000000000000..23be6b1728321 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.my +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.zh-CN.yaml new file mode 100644 index 0000000000000..778cc27b1f54d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.my +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.yaml b/manifests/m/Mozilla/Firefox/my/140.0.4/Mozilla.Firefox.my.yaml new file mode 100644 index 0000000000000..84aba6e98ec77 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/140.0.4/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.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.my +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.installer.yaml b/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.installer.yaml new file mode 100644 index 0000000000000..ecab34fec8cfd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nb-NO +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/nb-NO/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 356DE2BD25C2A57919E3D5D63475BB858A699A00256F6EF4F3CCEE6EB2C0694E + ProductCode: Mozilla Firefox 140.0.4 (x86 nb-NO) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/nb-NO/Firefox%20Setup%20140.0.4.exe + InstallerSha256: FE07F52720B18C64CE7BF6D8801CEA31028CE5465951151E90C08481D923E58D + ProductCode: Mozilla Firefox 140.0.4 (x64 nb-NO) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/nb-NO/Firefox%20Setup%20140.0.4.exe + InstallerSha256: EC70EDB61D09DF19540215A52A76E89EA003BA94D346FF53CEEB7BCC62BD5FB6 + ProductCode: Mozilla Firefox 140.0.4 (arm64 nb-NO) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..4612addd287eb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nb-NO +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.da-DK.yaml new file mode 100644 index 0000000000000..0ce647e744327 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nb-NO +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.de-DE.yaml new file mode 100644 index 0000000000000..0a5b82ca4ce78 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nb-NO +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.el-GR.yaml new file mode 100644 index 0000000000000..dbe853b368759 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nb-NO +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.en-GB.yaml new file mode 100644 index 0000000000000..4b4982bc1214f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nb-NO +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.en-US.yaml new file mode 100644 index 0000000000000..a9f1ca7168e27 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nb-NO +PackageVersion: 140.0.4 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (nb-NO) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.es-MX.yaml new file mode 100644 index 0000000000000..fa721a4090b49 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nb-NO +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.fr-FR.yaml new file mode 100644 index 0000000000000..9210c8a47fc28 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nb-NO +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.hu-HU.yaml new file mode 100644 index 0000000000000..16690b30fd8e5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nb-NO +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.ja-JP.yaml new file mode 100644 index 0000000000000..cf11c7df06272 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nb-NO +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.nb-NO.yaml new file mode 100644 index 0000000000000..61bc1ab3e9708 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nb-NO +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.ru-RU.yaml new file mode 100644 index 0000000000000..7fd593daf51ac --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nb-NO +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.ta-IN.yaml new file mode 100644 index 0000000000000..d07fdb2d8c6e3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nb-NO +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.zh-CN.yaml new file mode 100644 index 0000000000000..bf1b1cde1b876 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nb-NO +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.yaml b/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.yaml new file mode 100644 index 0000000000000..c7525dcaff44e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nb-NO/140.0.4/Mozilla.Firefox.nb-NO.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nb-NO +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.installer.yaml b/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.installer.yaml new file mode 100644 index 0000000000000..5c4a433aa188d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ne-NP +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/ne-NP/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 3A1624BCBBC98B9D51FE788C845C216DBC27C1DB6522D5EA5B5248813162FED8 + ProductCode: Mozilla Firefox 140.0.4 (x86 ne-NP) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/ne-NP/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 8AEDA6020FC24A0E38A9B8EF6B2C7C10BFE37150CCD37217AB8A4B2E58C07140 + ProductCode: Mozilla Firefox 140.0.4 (x64 ne-NP) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/ne-NP/Firefox%20Setup%20140.0.4.exe + InstallerSha256: AE442AEC682DBE659F15783CABABF197FB4F9703FD6AEDFA251B104258D06C01 + ProductCode: Mozilla Firefox 140.0.4 (arm64 ne-NP) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..5af5418b7868c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ne-NP +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.da-DK.yaml new file mode 100644 index 0000000000000..f8c6663d48b1c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ne-NP +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.de-DE.yaml new file mode 100644 index 0000000000000..b8fb5bfbbb72d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ne-NP +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.el-GR.yaml new file mode 100644 index 0000000000000..e9ffef454d871 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ne-NP +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.en-GB.yaml new file mode 100644 index 0000000000000..4966324fb43f4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ne-NP +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.en-US.yaml new file mode 100644 index 0000000000000..ef03f63f11b7a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ne-NP +PackageVersion: 140.0.4 +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: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.es-MX.yaml new file mode 100644 index 0000000000000..1987ba42561d4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ne-NP +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.fr-FR.yaml new file mode 100644 index 0000000000000..8e38cfd446d3b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ne-NP +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.hu-HU.yaml new file mode 100644 index 0000000000000..004acfe2dc129 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ne-NP +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.ja-JP.yaml new file mode 100644 index 0000000000000..4a86ef1240857 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ne-NP +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.nb-NO.yaml new file mode 100644 index 0000000000000..e40857342e8f1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ne-NP +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.ru-RU.yaml new file mode 100644 index 0000000000000..935eac5d52f6e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ne-NP +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.ta-IN.yaml new file mode 100644 index 0000000000000..e3360a613e907 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ne-NP +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6e3a802ad75da --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ne-NP +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.yaml b/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/Mozilla.Firefox.ne-NP.yaml new file mode 100644 index 0000000000000..79fa711c616c8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ne-NP/140.0.4/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.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ne-NP +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.installer.yaml b/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.installer.yaml new file mode 100644 index 0000000000000..ac02be047dbf1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/nn-NO/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 45E0F962BA6AB7AFFF3888A4A9BF03D0C77988A120AB7DDD630FF85D6EF6189B + ProductCode: Mozilla Firefox 140.0.4 (x86 nn-NO) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/nn-NO/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 31D24B59DBDDF148B846272CD69719259227EA6F45C778146B006233FEF871A2 + ProductCode: Mozilla Firefox 140.0.4 (x64 nn-NO) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/nn-NO/Firefox%20Setup%20140.0.4.exe + InstallerSha256: C0ACFCD8D6C3C1092F73EE3DC7D0600FAC2ABCBF3118AD86EB590D1D0B07D019 + ProductCode: Mozilla Firefox 140.0.4 (arm64 nn-NO) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..484903a631794 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.da-DK.yaml new file mode 100644 index 0000000000000..bbd0379efb6ff --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.de-DE.yaml new file mode 100644 index 0000000000000..c2d9db1ed95f2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.el-GR.yaml new file mode 100644 index 0000000000000..a1a00af34a5e8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.en-GB.yaml new file mode 100644 index 0000000000000..df0bbba329ac7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.en-US.yaml new file mode 100644 index 0000000000000..6abc00c1b7c8e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 140.0.4 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (nn-NO) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.es-MX.yaml new file mode 100644 index 0000000000000..dc36ad0d8916e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.fr-FR.yaml new file mode 100644 index 0000000000000..df095c5948357 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.hu-HU.yaml new file mode 100644 index 0000000000000..c1ad8d5ed0fba --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.ja-JP.yaml new file mode 100644 index 0000000000000..bfc26a661b966 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.nb-NO.yaml new file mode 100644 index 0000000000000..7f65c3c38b575 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.ru-RU.yaml new file mode 100644 index 0000000000000..aad99391c94ed --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.ta-IN.yaml new file mode 100644 index 0000000000000..8079b801a367b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.zh-CN.yaml new file mode 100644 index 0000000000000..3778523e10325 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.yaml b/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.yaml new file mode 100644 index 0000000000000..eb59ed2d3a279 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/140.0.4/Mozilla.Firefox.nn-NO.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.installer.yaml b/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.installer.yaml new file mode 100644 index 0000000000000..c530522a9161d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.oc +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/oc/Firefox%20Setup%20140.0.4.exe + InstallerSha256: A3AEAB4D16211C3A62FC63C2C97FF67D009F72AD766F16B7563F0F9CB1FDF5A3 + ProductCode: Mozilla Firefox 140.0.4 (x86 oc) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/oc/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 611218E803CAF3E05DB230E9D5F5FAA832D34E5412ACEEA26B46D52D65513D82 + ProductCode: Mozilla Firefox 140.0.4 (x64 oc) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/oc/Firefox%20Setup%20140.0.4.exe + InstallerSha256: EEF96678A0C43D6AA645592E5CCA22F5CD1F18D8F4168D5CB02700E7AC137FDD + ProductCode: Mozilla Firefox 140.0.4 (arm64 oc) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..1e1293449a2a9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.oc +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.da-DK.yaml new file mode 100644 index 0000000000000..2fc451676e48b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.oc +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.de-DE.yaml new file mode 100644 index 0000000000000..b430f8dc76e82 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.oc +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.el-GR.yaml new file mode 100644 index 0000000000000..d41644bdaa39d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.oc +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.en-GB.yaml new file mode 100644 index 0000000000000..fa7ba417ea12a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.oc +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.en-US.yaml new file mode 100644 index 0000000000000..857ee324beca2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.oc +PackageVersion: 140.0.4 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (oc) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.es-MX.yaml new file mode 100644 index 0000000000000..0d28404444009 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.oc +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.fr-FR.yaml new file mode 100644 index 0000000000000..4332585c731c8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.oc +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.hu-HU.yaml new file mode 100644 index 0000000000000..b2d563f311306 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.oc +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.ja-JP.yaml new file mode 100644 index 0000000000000..40ea27f4db221 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.oc +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.nb-NO.yaml new file mode 100644 index 0000000000000..2fe4809ee02b5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.oc +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.ru-RU.yaml new file mode 100644 index 0000000000000..66adef7b02d63 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.oc +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.ta-IN.yaml new file mode 100644 index 0000000000000..4c8088382e225 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.oc +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.zh-CN.yaml new file mode 100644 index 0000000000000..1c40693cdf97d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.oc +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.yaml b/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.yaml new file mode 100644 index 0000000000000..47552dd5dc49e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/oc/140.0.4/Mozilla.Firefox.oc.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.oc +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.installer.yaml b/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.installer.yaml new file mode 100644 index 0000000000000..d6e855ed3c40b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pa-IN +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/pa-IN/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 16E0E4E8C5BBD5702A767F35F0AB9CC9E358E8508DBA8182507E1DD0BB54EB33 + ProductCode: Mozilla Firefox 140.0.4 (x86 pa-IN) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/pa-IN/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 527A864FF11915FA3094CDB598FB08C145C2556443690454BBF247E43F2D1DA6 + ProductCode: Mozilla Firefox 140.0.4 (x64 pa-IN) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/pa-IN/Firefox%20Setup%20140.0.4.exe + InstallerSha256: FF3291BB0D53E4DF2F8D9CF04CF5825AA5A0E0544D6C92E06D98733BA5C4A1CC + ProductCode: Mozilla Firefox 140.0.4 (arm64 pa-IN) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..5ae6bb90b50cd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pa-IN +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.da-DK.yaml new file mode 100644 index 0000000000000..f4375a17dcc78 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pa-IN +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.de-DE.yaml new file mode 100644 index 0000000000000..c4a081a0c08cd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pa-IN +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.el-GR.yaml new file mode 100644 index 0000000000000..4973035669629 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pa-IN +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.en-GB.yaml new file mode 100644 index 0000000000000..0ee453b0a4112 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pa-IN +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.en-US.yaml new file mode 100644 index 0000000000000..c936856b9e5e6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pa-IN +PackageVersion: 140.0.4 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (pa-IN) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.es-MX.yaml new file mode 100644 index 0000000000000..870dd2fd59850 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pa-IN +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.fr-FR.yaml new file mode 100644 index 0000000000000..597ada9816d3e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pa-IN +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.hu-HU.yaml new file mode 100644 index 0000000000000..700debe4c3a0a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pa-IN +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.ja-JP.yaml new file mode 100644 index 0000000000000..cb2e37f656325 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pa-IN +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.nb-NO.yaml new file mode 100644 index 0000000000000..d83cd3c36777d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pa-IN +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.ru-RU.yaml new file mode 100644 index 0000000000000..ba721bd5f24d3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pa-IN +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.ta-IN.yaml new file mode 100644 index 0000000000000..48c7df91b69c3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pa-IN +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a791aab2c796c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pa-IN +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.yaml b/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.yaml new file mode 100644 index 0000000000000..e07336ee68daf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pa-IN/140.0.4/Mozilla.Firefox.pa-IN.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pa-IN +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.installer.yaml b/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.installer.yaml new file mode 100644 index 0000000000000..6160ba407c308 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pl +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/pl/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 315024064F64D299889A3D3DEC52E262E6994408E2AA6CC511192A52A099D865 + ProductCode: Mozilla Firefox 140.0.4 (x86 pl) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/pl/Firefox%20Setup%20140.0.4.exe + InstallerSha256: F79678C8976BB030EBB00CEF98F183062FDB30D54C7B42ADBA4B8A5C00E994CD + ProductCode: Mozilla Firefox 140.0.4 (x64 pl) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/pl/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 37B3DBAA0354D9D8901C2C09ED570494DB7747F37E36DB6433DE0B18056E7829 + ProductCode: Mozilla Firefox 140.0.4 (arm64 pl) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..0dbc6cdd9efe2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pl +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.da-DK.yaml new file mode 100644 index 0000000000000..748f7930d0de1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pl +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.de-DE.yaml new file mode 100644 index 0000000000000..127568ca86fbd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pl +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.el-GR.yaml new file mode 100644 index 0000000000000..668f2ac5cccd2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pl +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.en-GB.yaml new file mode 100644 index 0000000000000..fd9731ac117d8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pl +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.en-US.yaml new file mode 100644 index 0000000000000..4466e33897c75 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pl +PackageVersion: 140.0.4 +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 (pl) +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: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.es-MX.yaml new file mode 100644 index 0000000000000..1e860f080dfe3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pl +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.fr-FR.yaml new file mode 100644 index 0000000000000..65926838167fb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pl +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.hu-HU.yaml new file mode 100644 index 0000000000000..01b297be953db --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pl +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.ja-JP.yaml new file mode 100644 index 0000000000000..ab61792824348 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pl +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.nb-NO.yaml new file mode 100644 index 0000000000000..a21bc1c7f43f0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pl +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.ru-RU.yaml new file mode 100644 index 0000000000000..41ebf632de58d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pl +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.ta-IN.yaml new file mode 100644 index 0000000000000..78feef15b1ee4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pl +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.zh-CN.yaml new file mode 100644 index 0000000000000..dbb12db937bf1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pl +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.yaml b/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.yaml new file mode 100644 index 0000000000000..9ae0225be374b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pl/140.0.4/Mozilla.Firefox.pl.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pl +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.installer.yaml b/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.installer.yaml new file mode 100644 index 0000000000000..893b58d1eae88 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-BR +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/pt-BR/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 50495F58768395A9DA93D9F41AB79AB61D64701BC42608DACC9BE5F553DB4F04 + ProductCode: Mozilla Firefox 140.0.4 (x86 pt-BR) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/pt-BR/Firefox%20Setup%20140.0.4.exe + InstallerSha256: E883FEC2F32A82B924D84367C72FD51E08A669059DD5E73A92F0BE16A07C1EB6 + ProductCode: Mozilla Firefox 140.0.4 (x64 pt-BR) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/pt-BR/Firefox%20Setup%20140.0.4.exe + InstallerSha256: F593DC9E80A5421E60678E18F3090F549D5D7FE1191C2B27ED359E75AAD3E5D1 + ProductCode: Mozilla Firefox 140.0.4 (arm64 pt-BR) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..c546e59329d38 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-BR +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.da-DK.yaml new file mode 100644 index 0000000000000..f392cf2667c3a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-BR +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.de-DE.yaml new file mode 100644 index 0000000000000..0a020bc8fc687 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-BR +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.el-GR.yaml new file mode 100644 index 0000000000000..4301c6c320232 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-BR +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.en-GB.yaml new file mode 100644 index 0000000000000..efa585bc8f963 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-BR +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.en-US.yaml new file mode 100644 index 0000000000000..2ccc88f1b0e79 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-BR +PackageVersion: 140.0.4 +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-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: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.es-MX.yaml new file mode 100644 index 0000000000000..0a38c3d7ac489 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-BR +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.fr-FR.yaml new file mode 100644 index 0000000000000..5288e01f53add --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-BR +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.hu-HU.yaml new file mode 100644 index 0000000000000..629d9496972b0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-BR +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.ja-JP.yaml new file mode 100644 index 0000000000000..d429bdb416a36 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-BR +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.nb-NO.yaml new file mode 100644 index 0000000000000..0ffa2073c64d0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-BR +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.ru-RU.yaml new file mode 100644 index 0000000000000..57b12d393711f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-BR +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.ta-IN.yaml new file mode 100644 index 0000000000000..432a8f59af2a1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-BR +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.zh-CN.yaml new file mode 100644 index 0000000000000..2c2dc78ba24f1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-BR +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.yaml b/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.yaml new file mode 100644 index 0000000000000..7339b6d26c4a5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-BR/140.0.4/Mozilla.Firefox.pt-BR.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-BR +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.installer.yaml b/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.installer.yaml new file mode 100644 index 0000000000000..66f7b5747552e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/pt-PT/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 1952008194DBF1F61E0EAC9DB1786A84D9E8AF800A2022615912B53F96D95137 + ProductCode: Mozilla Firefox 140.0.4 (x86 pt-PT) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/pt-PT/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 2FFDE2577C396972B2C0BA1E7DF3C9A3DB43C51887BC3704257C4B1BE716D926 + ProductCode: Mozilla Firefox 140.0.4 (x64 pt-PT) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/pt-PT/Firefox%20Setup%20140.0.4.exe + InstallerSha256: AAABC1C16678651CB9E7B30CF9FDEF6D2B28EA4B0D708E9B9168D74F763F737B + ProductCode: Mozilla Firefox 140.0.4 (arm64 pt-PT) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..ca9ab73d7cf26 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.da-DK.yaml new file mode 100644 index 0000000000000..fe765ebe1e5fb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.de-DE.yaml new file mode 100644 index 0000000000000..a38fea908c122 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.el-GR.yaml new file mode 100644 index 0000000000000..f5c36de71760e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.en-GB.yaml new file mode 100644 index 0000000000000..b6c6b0a2f9ab3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.en-US.yaml new file mode 100644 index 0000000000000..f31cd94367520 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 140.0.4 +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: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.es-MX.yaml new file mode 100644 index 0000000000000..8529c2a3c4947 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.fr-FR.yaml new file mode 100644 index 0000000000000..e0ac0aac405a5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.hu-HU.yaml new file mode 100644 index 0000000000000..599f9d3e498be --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.ja-JP.yaml new file mode 100644 index 0000000000000..ea9bba71ec3dc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.nb-NO.yaml new file mode 100644 index 0000000000000..7459d83c16b71 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.ru-RU.yaml new file mode 100644 index 0000000000000..a08a8e3cd7d02 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.ta-IN.yaml new file mode 100644 index 0000000000000..e2d44e6260ac8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.zh-CN.yaml new file mode 100644 index 0000000000000..3729758d84fc6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.yaml b/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/Mozilla.Firefox.pt-PT.yaml new file mode 100644 index 0000000000000..ec635e0553f6d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/140.0.4/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.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.installer.yaml b/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.installer.yaml new file mode 100644 index 0000000000000..42b1490a114b9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.rm +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/rm/Firefox%20Setup%20140.0.4.exe + InstallerSha256: F4220992F05DB8F1F00459F9D6F9170628C920231917D59318741E2C26B1F025 + ProductCode: Mozilla Firefox 140.0.4 (x86 rm) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/rm/Firefox%20Setup%20140.0.4.exe + InstallerSha256: A321241084CCCEB1BF0D4266D6EDCF14E4F83C4D69E435803698929E97393D51 + ProductCode: Mozilla Firefox 140.0.4 (x64 rm) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/rm/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 6196801432E2049CD2022ED5F220CABDBAF64A32AD333EAE9B9CF6DB9421D70F + ProductCode: Mozilla Firefox 140.0.4 (arm64 rm) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..741da6de081ec --- /dev/null +++ b/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.rm +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.da-DK.yaml new file mode 100644 index 0000000000000..124c39ac36f6b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.rm +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.de-DE.yaml new file mode 100644 index 0000000000000..970fcafc76de1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.rm +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.el-GR.yaml new file mode 100644 index 0000000000000..a152343e8beb6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.rm +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.en-GB.yaml new file mode 100644 index 0000000000000..09ff27dde61f3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.rm +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.en-US.yaml new file mode 100644 index 0000000000000..7ec5ad2d43e43 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.rm +PackageVersion: 140.0.4 +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: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.es-MX.yaml new file mode 100644 index 0000000000000..7c0ab2705c808 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.rm +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.fr-FR.yaml new file mode 100644 index 0000000000000..da80dd50ff975 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.rm +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.hu-HU.yaml new file mode 100644 index 0000000000000..5f768afa6aed5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.rm +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.ja-JP.yaml new file mode 100644 index 0000000000000..a0846f2a02c1c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.rm +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.nb-NO.yaml new file mode 100644 index 0000000000000..2af2a6c6e8e8f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.rm +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.ru-RU.yaml new file mode 100644 index 0000000000000..81db9ae2a841a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.rm +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.ta-IN.yaml new file mode 100644 index 0000000000000..e20b69e6ab792 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.rm +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6244032e51f9c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.rm +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.yaml b/manifests/m/Mozilla/Firefox/rm/140.0.4/Mozilla.Firefox.rm.yaml new file mode 100644 index 0000000000000..bb8b39d7798fe --- /dev/null +++ b/manifests/m/Mozilla/Firefox/rm/140.0.4/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.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.rm +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.installer.yaml b/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.installer.yaml new file mode 100644 index 0000000000000..fa302aa3317e8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ro +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/ro/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 3B21B1444EEB1009635DF83562B96A0F885CDDAB98EC3CB6FAB80B148EDB9DDF + ProductCode: Mozilla Firefox 140.0.4 (x86 ro) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/ro/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 05569EC27DA719ABD839635CE7156390D3E7A922A113EDEB32687FB4846E4D1E + ProductCode: Mozilla Firefox 140.0.4 (x64 ro) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/ro/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 9ACE02DD71A6F1B5E411EFE14221B24667F772948EE6959389F2E52C554414F2 + ProductCode: Mozilla Firefox 140.0.4 (arm64 ro) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..da20cad25621e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ro +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.da-DK.yaml new file mode 100644 index 0000000000000..8e9a1823ac399 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ro +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.de-DE.yaml new file mode 100644 index 0000000000000..1d10f7051b23d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ro +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.el-GR.yaml new file mode 100644 index 0000000000000..c5a776468088d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ro +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.en-GB.yaml new file mode 100644 index 0000000000000..b00430fc016ff --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ro +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.en-US.yaml new file mode 100644 index 0000000000000..6cc608e5d46f6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ro +PackageVersion: 140.0.4 +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: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.es-MX.yaml new file mode 100644 index 0000000000000..a0cb930ac6618 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ro +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.fr-FR.yaml new file mode 100644 index 0000000000000..db4b012f51764 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ro +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.hu-HU.yaml new file mode 100644 index 0000000000000..1406b3fb2579f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ro +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.ja-JP.yaml new file mode 100644 index 0000000000000..b27e22b11eb6c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ro +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.nb-NO.yaml new file mode 100644 index 0000000000000..609d76688c714 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ro +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.ru-RU.yaml new file mode 100644 index 0000000000000..01c2946da4a8a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ro +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.ta-IN.yaml new file mode 100644 index 0000000000000..d5050d98f565d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ro +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.zh-CN.yaml new file mode 100644 index 0000000000000..5fdf36c1f3723 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ro +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.yaml b/manifests/m/Mozilla/Firefox/ro/140.0.4/Mozilla.Firefox.ro.yaml new file mode 100644 index 0000000000000..9689b1f8a3a17 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ro/140.0.4/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.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ro +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.installer.yaml b/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.installer.yaml new file mode 100644 index 0000000000000..b3135d8be45a6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ru +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/ru/Firefox%20Setup%20140.0.4.exe + InstallerSha256: C9C484A310E3EA8F87FFDCC37070A102C3E5E9998FB4A0BDBCE0287985A120F2 + ProductCode: Mozilla Firefox 140.0.4 (x86 ru) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/ru/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 2991E903E5E12F7BAD2E343E3D37F71058F1CFE1BB642C5D5A5536D589C03595 + ProductCode: Mozilla Firefox 140.0.4 (x64 ru) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/ru/Firefox%20Setup%20140.0.4.exe + InstallerSha256: C74D7EEC7D35AB884A92F4C4B74034099AC685FB37EED6EB9FCBFF46FE095FCA + ProductCode: Mozilla Firefox 140.0.4 (arm64 ru) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..f861ae47c1e82 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ru +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.da-DK.yaml new file mode 100644 index 0000000000000..0cf091b8acaab --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ru +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.de-DE.yaml new file mode 100644 index 0000000000000..3b79490a96a88 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ru +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.el-GR.yaml new file mode 100644 index 0000000000000..c3655c68dd986 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ru +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.en-GB.yaml new file mode 100644 index 0000000000000..b6564e0fe6104 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ru +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.en-US.yaml new file mode 100644 index 0000000000000..10b45e38edae7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ru +PackageVersion: 140.0.4 +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: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.es-MX.yaml new file mode 100644 index 0000000000000..31ae6cba4461d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ru +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.fr-FR.yaml new file mode 100644 index 0000000000000..c9e50d4104aa6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ru +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.hu-HU.yaml new file mode 100644 index 0000000000000..d71e31fda746c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ru +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.ja-JP.yaml new file mode 100644 index 0000000000000..aa4de453a329e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ru +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.nb-NO.yaml new file mode 100644 index 0000000000000..bc27a710a087a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ru +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.ru-RU.yaml new file mode 100644 index 0000000000000..6b740a2b45bef --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ru +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.ta-IN.yaml new file mode 100644 index 0000000000000..fef4dfe598c0b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ru +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.zh-CN.yaml new file mode 100644 index 0000000000000..feb81873d80f2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ru +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.yaml b/manifests/m/Mozilla/Firefox/ru/140.0.4/Mozilla.Firefox.ru.yaml new file mode 100644 index 0000000000000..500212395366b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/140.0.4/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.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ru +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.installer.yaml b/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.installer.yaml new file mode 100644 index 0000000000000..b54bebeddeb0b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sc +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/sc/Firefox%20Setup%20140.0.4.exe + InstallerSha256: CF34C094D57CB29565A713B896E70DB742281888827DEDD9E94981DC653EAC7F + ProductCode: Mozilla Firefox 140.0.4 (x86 sc) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/sc/Firefox%20Setup%20140.0.4.exe + InstallerSha256: F4CA1A8A7B45B8E440FDD93549E0A00F449D1CB33927E86DB89AA17A9A81520B + ProductCode: Mozilla Firefox 140.0.4 (x64 sc) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/sc/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 7B413DD51E8EDC1F5079B85FB102A4DE5DC2AFE79DF1C30A71458492A3259F42 + ProductCode: Mozilla Firefox 140.0.4 (arm64 sc) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..b85fc4836dfc0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sc +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.da-DK.yaml new file mode 100644 index 0000000000000..31f3d4b0cb2d8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sc +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.de-DE.yaml new file mode 100644 index 0000000000000..3683ade1a97c1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sc +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.el-GR.yaml new file mode 100644 index 0000000000000..47a3349ec2fc7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sc +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.en-GB.yaml new file mode 100644 index 0000000000000..ce26adca1173c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sc +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.en-US.yaml new file mode 100644 index 0000000000000..557bbb30697ee --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sc +PackageVersion: 140.0.4 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (sc) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.es-MX.yaml new file mode 100644 index 0000000000000..976449c4efbc5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sc +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.fr-FR.yaml new file mode 100644 index 0000000000000..7fac2041d3db3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sc +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.hu-HU.yaml new file mode 100644 index 0000000000000..241a381f31ce8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sc +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.ja-JP.yaml new file mode 100644 index 0000000000000..5eb69fb0b6222 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sc +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.nb-NO.yaml new file mode 100644 index 0000000000000..47665fee1e292 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sc +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.ru-RU.yaml new file mode 100644 index 0000000000000..25b1868151bbd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sc +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.ta-IN.yaml new file mode 100644 index 0000000000000..5f16f912d904b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sc +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.zh-CN.yaml new file mode 100644 index 0000000000000..68d548ca74e0b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sc +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.yaml b/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.yaml new file mode 100644 index 0000000000000..53b06a8261e28 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sc/140.0.4/Mozilla.Firefox.sc.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sc +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.installer.yaml b/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.installer.yaml new file mode 100644 index 0000000000000..e3c5d793c23a0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.si +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/si/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 869CCA0BD26180CAB1951715005BD2D595439F3C50D6D756A13542EE4E57B6C8 + ProductCode: Mozilla Firefox 140.0.4 (x86 si) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/si/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 7DD7D5FECCC65791BB952544485CEF633127C4D8207FE823C15C90404BF15D49 + ProductCode: Mozilla Firefox 140.0.4 (x64 si) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/si/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 8B1B01531BFB56EE811B9051D9DF62BFD4DA85C27332BEC14D83C827CDEA8DAE + ProductCode: Mozilla Firefox 140.0.4 (arm64 si) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..b9b3987915de0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.si +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.da-DK.yaml new file mode 100644 index 0000000000000..a0b25f868c7e3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.si +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.de-DE.yaml new file mode 100644 index 0000000000000..d909ae07a7493 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.si +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.el-GR.yaml new file mode 100644 index 0000000000000..9044dc9d0ec46 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.si +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.en-GB.yaml new file mode 100644 index 0000000000000..ade83f4b95e25 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.si +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.en-US.yaml new file mode 100644 index 0000000000000..49cad34cec8d7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.si +PackageVersion: 140.0.4 +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: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.es-MX.yaml new file mode 100644 index 0000000000000..698c88afb0a63 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.si +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.fr-FR.yaml new file mode 100644 index 0000000000000..96888346a8fad --- /dev/null +++ b/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.si +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.hu-HU.yaml new file mode 100644 index 0000000000000..61254c61f4fa2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.si +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.ja-JP.yaml new file mode 100644 index 0000000000000..f4cb63c74133f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.si +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.nb-NO.yaml new file mode 100644 index 0000000000000..4f33222f4d30e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.si +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.ru-RU.yaml new file mode 100644 index 0000000000000..c87ba6546f734 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.si +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.ta-IN.yaml new file mode 100644 index 0000000000000..34e26ea350bb9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.si +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.zh-CN.yaml new file mode 100644 index 0000000000000..7ad3b7bd38b84 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.si +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.yaml b/manifests/m/Mozilla/Firefox/si/140.0.4/Mozilla.Firefox.si.yaml new file mode 100644 index 0000000000000..b037e1e276cd9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/si/140.0.4/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.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.si +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.installer.yaml b/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.installer.yaml new file mode 100644 index 0000000000000..e42d425fa7251 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sk +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/sk/Firefox%20Setup%20140.0.4.exe + InstallerSha256: DF9D443C1E907705B1922099B95F5C9A16F0FF8F72F0146CA7FA07BBAC7A08B2 + ProductCode: Mozilla Firefox 140.0.4 (x86 sk) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/sk/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 746AA6C435F9DAFEC8FCE59166C92AA953869BD4A004E4B1E51EFCD1E6AD23AB + ProductCode: Mozilla Firefox 140.0.4 (x64 sk) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/sk/Firefox%20Setup%20140.0.4.exe + InstallerSha256: CEC19714E4840D8FEF8EAEC62C253342CD52F44CC512614BC864F20E483C00D6 + ProductCode: Mozilla Firefox 140.0.4 (arm64 sk) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..972c9f5f88923 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sk +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.da-DK.yaml new file mode 100644 index 0000000000000..be95c15d84bac --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sk +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.de-DE.yaml new file mode 100644 index 0000000000000..8ae82577905c0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sk +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.el-GR.yaml new file mode 100644 index 0000000000000..3f8da6a8ff487 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sk +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.en-GB.yaml new file mode 100644 index 0000000000000..526b3ebb14765 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sk +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.en-US.yaml new file mode 100644 index 0000000000000..a50828f1c1162 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sk +PackageVersion: 140.0.4 +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: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.es-MX.yaml new file mode 100644 index 0000000000000..8bb9317c67a4e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sk +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.fr-FR.yaml new file mode 100644 index 0000000000000..00777f0ce11b2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sk +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.hu-HU.yaml new file mode 100644 index 0000000000000..3e5b1c6f8e98e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sk +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.ja-JP.yaml new file mode 100644 index 0000000000000..db0cd64a44142 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sk +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.nb-NO.yaml new file mode 100644 index 0000000000000..0eeeb77190241 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sk +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.ru-RU.yaml new file mode 100644 index 0000000000000..3c093f23056ea --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sk +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.ta-IN.yaml new file mode 100644 index 0000000000000..4803298f97dc2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sk +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.zh-CN.yaml new file mode 100644 index 0000000000000..9ae3ceeb44ed4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sk +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.yaml b/manifests/m/Mozilla/Firefox/sk/140.0.4/Mozilla.Firefox.sk.yaml new file mode 100644 index 0000000000000..76b76c5dad84a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sk/140.0.4/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.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sk +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.installer.yaml b/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.installer.yaml new file mode 100644 index 0000000000000..d870816f509a7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/son/Firefox%20Setup%20140.0.4.exe + InstallerSha256: B7D74EEB1DA39BC57750B9235A8DC166C9D033B080A6A1237493B681479289B4 + ProductCode: Mozilla Firefox 140.0.4 (x86 son) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/son/Firefox%20Setup%20140.0.4.exe + InstallerSha256: DA8C81E80CEDA88805D2304D16FC6A1DE3E50EC5D0FAABAAA1D6EF49309439C4 + ProductCode: Mozilla Firefox 140.0.4 (x64 son) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/son/Firefox%20Setup%20140.0.4.exe + InstallerSha256: D66B31E67B30A4466131CD056B865F65A9C26000FF37A9EA8E42CB64D14E6704 + ProductCode: Mozilla Firefox 140.0.4 (arm64 son) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..88a7fdb3c3da1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.da-DK.yaml new file mode 100644 index 0000000000000..f045bde56567d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.de-DE.yaml new file mode 100644 index 0000000000000..fd13a483ed7f1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.el-GR.yaml new file mode 100644 index 0000000000000..376d04e774e28 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.en-GB.yaml new file mode 100644 index 0000000000000..889ca4c2662f1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.en-US.yaml new file mode 100644 index 0000000000000..80baf6ad7fc41 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 140.0.4 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (son) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.es-MX.yaml new file mode 100644 index 0000000000000..6c8282dd9e480 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.fr-FR.yaml new file mode 100644 index 0000000000000..db962dd43ec09 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.hu-HU.yaml new file mode 100644 index 0000000000000..9310531470645 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.ja-JP.yaml new file mode 100644 index 0000000000000..5196791404587 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.nb-NO.yaml new file mode 100644 index 0000000000000..70c2fe661c375 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.ru-RU.yaml new file mode 100644 index 0000000000000..2cb1f69f4ff4d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.ta-IN.yaml new file mode 100644 index 0000000000000..1450997f859f6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.zh-CN.yaml new file mode 100644 index 0000000000000..486e2de0b432e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.yaml b/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.yaml new file mode 100644 index 0000000000000..a761f726347b2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/140.0.4/Mozilla.Firefox.son.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.installer.yaml b/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.installer.yaml new file mode 100644 index 0000000000000..a10f80a76a259 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sq +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/sq/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 73B2A9353212A4AF4897F10BABFD058C9C3AD8214788870086E1B84D094F0FFC + ProductCode: Mozilla Firefox 140.0.4 (x86 sq) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/sq/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 9784587735271685B1CBF28862B791720CBBFC9965A603D34D03A764126DF616 + ProductCode: Mozilla Firefox 140.0.4 (x64 sq) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/sq/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 79CFDA59D05C1844C535F5C6F9BFB4F874B46A3A4025B94DDD0A08F6F1E617CA + ProductCode: Mozilla Firefox 140.0.4 (arm64 sq) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..717afd7f7b0f8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sq +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.da-DK.yaml new file mode 100644 index 0000000000000..0a7b40b84be7e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sq +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.de-DE.yaml new file mode 100644 index 0000000000000..367a4a10b7ad9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sq +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.el-GR.yaml new file mode 100644 index 0000000000000..efd2111ebc28b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sq +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.en-GB.yaml new file mode 100644 index 0000000000000..8e5de63efc36a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sq +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.en-US.yaml new file mode 100644 index 0000000000000..a43b14295582d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sq +PackageVersion: 140.0.4 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (sq) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.es-MX.yaml new file mode 100644 index 0000000000000..f11c3438fa08c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sq +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.fr-FR.yaml new file mode 100644 index 0000000000000..4b7ff050f4f4f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sq +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.hu-HU.yaml new file mode 100644 index 0000000000000..7d4ac7169d71a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sq +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.ja-JP.yaml new file mode 100644 index 0000000000000..2a414c53979f7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sq +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.nb-NO.yaml new file mode 100644 index 0000000000000..1bdc29a85b762 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sq +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.ru-RU.yaml new file mode 100644 index 0000000000000..4a6addfa3004c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sq +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.ta-IN.yaml new file mode 100644 index 0000000000000..1c1cb0577e06e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sq +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f710161c6e44d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sq +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.yaml b/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.yaml new file mode 100644 index 0000000000000..8dac256d70ff2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sq/140.0.4/Mozilla.Firefox.sq.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sq +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.installer.yaml b/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.installer.yaml new file mode 100644 index 0000000000000..a1b64d1e4fdd1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sr +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/sr/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 1607C017F1D562C4FE792F106DF7A42B00FF2F0903EE9700423E5A7EBF5236BB + ProductCode: Mozilla Firefox 140.0.4 (x86 sr) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/sr/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 38FE554913FAABA639586678BBB7D99ADEBFD43D0C403E93ABBFDE9151DC78BE + ProductCode: Mozilla Firefox 140.0.4 (x64 sr) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/sr/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 29F1109AC949575F373DF75BFA52502E40DD11B64A7B2B28E69B0B1F6FC1C9C9 + ProductCode: Mozilla Firefox 140.0.4 (arm64 sr) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..990a3faa6379e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sr +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.da-DK.yaml new file mode 100644 index 0000000000000..2a2a55bbc1422 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sr +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.de-DE.yaml new file mode 100644 index 0000000000000..3ac508039655e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sr +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.el-GR.yaml new file mode 100644 index 0000000000000..399789249c15c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sr +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.en-GB.yaml new file mode 100644 index 0000000000000..0fbc70df024f1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sr +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.en-US.yaml new file mode 100644 index 0000000000000..d580787a3a61b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sr +PackageVersion: 140.0.4 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (sr) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.es-MX.yaml new file mode 100644 index 0000000000000..8903370c9eaab --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sr +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.fr-FR.yaml new file mode 100644 index 0000000000000..8fd7b906235c9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sr +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.hu-HU.yaml new file mode 100644 index 0000000000000..66b66cce8dff1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sr +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.ja-JP.yaml new file mode 100644 index 0000000000000..fe7959a260aa1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sr +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.nb-NO.yaml new file mode 100644 index 0000000000000..879a50678d17d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sr +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.ru-RU.yaml new file mode 100644 index 0000000000000..ece56ec8694d0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sr +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.ta-IN.yaml new file mode 100644 index 0000000000000..9891dc9599bba --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sr +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.zh-CN.yaml new file mode 100644 index 0000000000000..e64f2448471dc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sr +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.yaml b/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.yaml new file mode 100644 index 0000000000000..7446a4c949865 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sr/140.0.4/Mozilla.Firefox.sr.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sr +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.installer.yaml b/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.installer.yaml new file mode 100644 index 0000000000000..e2a2fb79c4963 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/sv-SE/Firefox%20Setup%20140.0.4.exe + InstallerSha256: DEA86428885C76752C7F3FB8D08B5365B4F5730BAD4E237257A411F72649BD87 + ProductCode: Mozilla Firefox 140.0.4 (x86 sv-SE) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/sv-SE/Firefox%20Setup%20140.0.4.exe + InstallerSha256: C91D78B9870E26C36DAC2D5AAF0326CB9F0E36C777833CA444BDF4B0864718DF + ProductCode: Mozilla Firefox 140.0.4 (x64 sv-SE) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/sv-SE/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 5781DF6A837407B4700321B508F1EC3A62AB3F98178DB12906D47F104A2C4A75 + ProductCode: Mozilla Firefox 140.0.4 (arm64 sv-SE) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..907da4934d374 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.da-DK.yaml new file mode 100644 index 0000000000000..e6fe6ef921dd8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.de-DE.yaml new file mode 100644 index 0000000000000..cb44b8a2fa595 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.el-GR.yaml new file mode 100644 index 0000000000000..605c7f05f0cf0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.en-GB.yaml new file mode 100644 index 0000000000000..22a54ed3e1209 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.en-US.yaml new file mode 100644 index 0000000000000..4d876b7c4ea93 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 140.0.4 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (sv-SE) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.es-MX.yaml new file mode 100644 index 0000000000000..2b1b07a9cdf96 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.fr-FR.yaml new file mode 100644 index 0000000000000..bd42e1cbc675d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.hu-HU.yaml new file mode 100644 index 0000000000000..543cbf9893014 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.ja-JP.yaml new file mode 100644 index 0000000000000..f64bb2320f7f2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.nb-NO.yaml new file mode 100644 index 0000000000000..ff5bc948d7c69 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.ru-RU.yaml new file mode 100644 index 0000000000000..4359a75becdfe --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.ta-IN.yaml new file mode 100644 index 0000000000000..155e6613b9906 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.zh-CN.yaml new file mode 100644 index 0000000000000..5591b56657040 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.yaml b/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.yaml new file mode 100644 index 0000000000000..d525a5d866ddf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/140.0.4/Mozilla.Firefox.sv-SE.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.installer.yaml b/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.installer.yaml new file mode 100644 index 0000000000000..595b79f821a76 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tg +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/tg/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 3DE6336A0C3AFBDDB7D6C95A56B25AD5C44543F1D1762BE9561E49A7FD5CB460 + ProductCode: Mozilla Firefox 140.0.4 (x86 tg) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/tg/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 92041D7ACEA0C269F1ADC1FF15C7272BAFD3624FA7E4AFE92DEB6C6937C87F48 + ProductCode: Mozilla Firefox 140.0.4 (x64 tg) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/tg/Firefox%20Setup%20140.0.4.exe + InstallerSha256: A336F487D215D4C3CE4EF3EA30693A929702030090704D13EE72F3BD102CB083 + ProductCode: Mozilla Firefox 140.0.4 (arm64 tg) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..12cef08e4d0ca --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tg +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.da-DK.yaml new file mode 100644 index 0000000000000..a63afe0f9ad3b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tg +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.de-DE.yaml new file mode 100644 index 0000000000000..1dbe963a3eaa3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tg +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.el-GR.yaml new file mode 100644 index 0000000000000..da47aaf8a927d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tg +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.en-GB.yaml new file mode 100644 index 0000000000000..6eaa13447ed60 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tg +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.en-US.yaml new file mode 100644 index 0000000000000..d4f93c57ca716 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tg +PackageVersion: 140.0.4 +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 (tg) +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: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.es-MX.yaml new file mode 100644 index 0000000000000..bb6e7db74a19e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tg +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.fr-FR.yaml new file mode 100644 index 0000000000000..3173bf7f80951 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tg +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.hu-HU.yaml new file mode 100644 index 0000000000000..6121659370ad1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tg +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.ja-JP.yaml new file mode 100644 index 0000000000000..58209ae34d58f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tg +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.nb-NO.yaml new file mode 100644 index 0000000000000..894a383890bad --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tg +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.ru-RU.yaml new file mode 100644 index 0000000000000..07197471dd2d6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tg +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.ta-IN.yaml new file mode 100644 index 0000000000000..e0832f97ce9b9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tg +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f7efe75261701 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tg +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.yaml b/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.yaml new file mode 100644 index 0000000000000..78e0d5a315a24 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tg/140.0.4/Mozilla.Firefox.tg.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tg +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.installer.yaml b/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.installer.yaml new file mode 100644 index 0000000000000..2e71b696bc60a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.th +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/th/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 184A762819A6444C1873E540DEE821763306B40A3672ED9436797EB32D49D3C7 + ProductCode: Mozilla Firefox 140.0.4 (x86 th) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/th/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 7D2564D2EBF4AFC65C89A291CF084398E7EB810F781DDBFB312EE7574E726A30 + ProductCode: Mozilla Firefox 140.0.4 (x64 th) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/th/Firefox%20Setup%20140.0.4.exe + InstallerSha256: BAB001E1F020D8AD5EE94C6163FF73609FD78BCD5810BE30B858D73DDF59B8F6 + ProductCode: Mozilla Firefox 140.0.4 (arm64 th) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..23c33a2b2c143 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.th +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.da-DK.yaml new file mode 100644 index 0000000000000..b4ef074f7a537 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.th +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.de-DE.yaml new file mode 100644 index 0000000000000..d8e0709b029f8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.th +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.el-GR.yaml new file mode 100644 index 0000000000000..250d5c4aa8a3a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.th +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.en-GB.yaml new file mode 100644 index 0000000000000..dbc1f086dd31b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.th +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.en-US.yaml new file mode 100644 index 0000000000000..1b42f7034598e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.th +PackageVersion: 140.0.4 +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: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.es-MX.yaml new file mode 100644 index 0000000000000..daf7fa2c90dbb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.th +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.fr-FR.yaml new file mode 100644 index 0000000000000..363fe79886c9e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.th +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.hu-HU.yaml new file mode 100644 index 0000000000000..a0d3af7e1ab64 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.th +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.ja-JP.yaml new file mode 100644 index 0000000000000..2bbeed2062c74 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.th +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.nb-NO.yaml new file mode 100644 index 0000000000000..9e5c28a008d55 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.th +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.ru-RU.yaml new file mode 100644 index 0000000000000..8b9e5381a13cb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.th +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.ta-IN.yaml new file mode 100644 index 0000000000000..56b33eb9dffdf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.th +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.zh-CN.yaml new file mode 100644 index 0000000000000..014b685db8fd6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.th +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.yaml b/manifests/m/Mozilla/Firefox/th/140.0.4/Mozilla.Firefox.th.yaml new file mode 100644 index 0000000000000..01b10413d5c8c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/th/140.0.4/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.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.th +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.installer.yaml b/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.installer.yaml new file mode 100644 index 0000000000000..1a47f173ed0a3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tr +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/tr/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 125E5D037C7CEC7ACE141C7501347EB8300E82B40388BC44439BC0D368E17B66 + ProductCode: Mozilla Firefox 140.0.4 (x86 tr) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/tr/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 35CF28D65E465335EB37C4EA6A9B0E4643722876CC1AE5D689620EF3F4FB7A6B + ProductCode: Mozilla Firefox 140.0.4 (x64 tr) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/tr/Firefox%20Setup%20140.0.4.exe + InstallerSha256: F074CEBCAFBC15C41937E6621750F43FB1DE09389D8526975CB1E118771CF45A + ProductCode: Mozilla Firefox 140.0.4 (arm64 tr) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..ffe9a0981c157 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tr +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.da-DK.yaml new file mode 100644 index 0000000000000..640e4d17b4e65 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tr +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.de-DE.yaml new file mode 100644 index 0000000000000..0a10ab1dd0928 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tr +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.el-GR.yaml new file mode 100644 index 0000000000000..6f80e14569bed --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tr +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.en-GB.yaml new file mode 100644 index 0000000000000..cf8fc3669142f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tr +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.en-US.yaml new file mode 100644 index 0000000000000..7998794928a5b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tr +PackageVersion: 140.0.4 +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 (tr) +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: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.es-MX.yaml new file mode 100644 index 0000000000000..5ac0efb0cd70b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tr +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.fr-FR.yaml new file mode 100644 index 0000000000000..3a35ac5189965 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tr +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.hu-HU.yaml new file mode 100644 index 0000000000000..8e76b5793cb1e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tr +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.ja-JP.yaml new file mode 100644 index 0000000000000..1ea39054857dd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tr +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.nb-NO.yaml new file mode 100644 index 0000000000000..663038498321d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tr +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.ru-RU.yaml new file mode 100644 index 0000000000000..ef4c7cef1e5f3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tr +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.ta-IN.yaml new file mode 100644 index 0000000000000..75537abd322cb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tr +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a777c36f9e1c9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tr +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.yaml b/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.yaml new file mode 100644 index 0000000000000..808ca61d76f10 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tr/140.0.4/Mozilla.Firefox.tr.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tr +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.installer.yaml b/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.installer.yaml new file mode 100644 index 0000000000000..703d7d5381f75 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.trs +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/trs/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 67BF9AE777DDC57F137AC96C2C65EAB62AAB3F4AFDDCBAE61B30890B1CB01A9F + ProductCode: Mozilla Firefox 140.0.4 (x86 trs) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/trs/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 982791517A7786E8838E0678966F0EB6769EFEA6E702E9BFD89F760C73D8B271 + ProductCode: Mozilla Firefox 140.0.4 (x64 trs) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/trs/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 4A01A2E47E64AA47747CF4583A494F23D2937372B735832620F8C3F91689ED52 + ProductCode: Mozilla Firefox 140.0.4 (arm64 trs) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..bba23a7555390 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.trs +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.da-DK.yaml new file mode 100644 index 0000000000000..c7ec75a237408 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.trs +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.de-DE.yaml new file mode 100644 index 0000000000000..92bee58812773 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.trs +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.el-GR.yaml new file mode 100644 index 0000000000000..54ddc4cf208d2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.trs +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.en-GB.yaml new file mode 100644 index 0000000000000..f36340330a3f6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.trs +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.en-US.yaml new file mode 100644 index 0000000000000..65e311853e455 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.trs +PackageVersion: 140.0.4 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (trs) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.es-MX.yaml new file mode 100644 index 0000000000000..cdecbaf5f443b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.trs +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.fr-FR.yaml new file mode 100644 index 0000000000000..3763c516e7fe0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.trs +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.hu-HU.yaml new file mode 100644 index 0000000000000..411b1f04ecb9b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.trs +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.ja-JP.yaml new file mode 100644 index 0000000000000..6c672024a6112 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.trs +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.nb-NO.yaml new file mode 100644 index 0000000000000..8ba02aaad08fa --- /dev/null +++ b/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.trs +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.ru-RU.yaml new file mode 100644 index 0000000000000..92762ba325f0c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.trs +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.ta-IN.yaml new file mode 100644 index 0000000000000..3e8faadc07140 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.trs +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.zh-CN.yaml new file mode 100644 index 0000000000000..30cbe988fcfa0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.trs +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.yaml b/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.yaml new file mode 100644 index 0000000000000..4b157a376c6ce --- /dev/null +++ b/manifests/m/Mozilla/Firefox/trs/140.0.4/Mozilla.Firefox.trs.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.trs +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.installer.yaml b/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.installer.yaml new file mode 100644 index 0000000000000..41650741c7b7d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uk +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/uk/Firefox%20Setup%20140.0.4.exe + InstallerSha256: C79F772969CD8614FBF9B2073297FFF7A0AD3B0149BDBABAF07DD90D6B0B63A9 + ProductCode: Mozilla Firefox 140.0.4 (x86 uk) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/uk/Firefox%20Setup%20140.0.4.exe + InstallerSha256: F4A59757ACACD1F499EFD53ABB9F84CFD3E0EB470225FA8F4CC32262FE00ED19 + ProductCode: Mozilla Firefox 140.0.4 (x64 uk) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/uk/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 24D745C0C614F233D0FA9DB6F7355161AA0980506CC0A6ADE7F71D17F2FE09BC + ProductCode: Mozilla Firefox 140.0.4 (arm64 uk) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..6fc0e42bc30f0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uk +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.da-DK.yaml new file mode 100644 index 0000000000000..43ad618674be5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uk +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.de-DE.yaml new file mode 100644 index 0000000000000..29e2f66e5dbca --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uk +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.el-GR.yaml new file mode 100644 index 0000000000000..16ae6203ca2ea --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uk +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.en-GB.yaml new file mode 100644 index 0000000000000..4049bbe9e6257 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uk +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.en-US.yaml new file mode 100644 index 0000000000000..6cea0202c83b9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uk +PackageVersion: 140.0.4 +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: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.es-MX.yaml new file mode 100644 index 0000000000000..dbbf346f02419 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uk +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.fr-FR.yaml new file mode 100644 index 0000000000000..692afae9263eb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uk +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.hu-HU.yaml new file mode 100644 index 0000000000000..5400d5ec741c5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uk +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.ja-JP.yaml new file mode 100644 index 0000000000000..d555def2307b5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uk +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.nb-NO.yaml new file mode 100644 index 0000000000000..3a86539bd3ea3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uk +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.ru-RU.yaml new file mode 100644 index 0000000000000..13816e9d1a559 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uk +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.ta-IN.yaml new file mode 100644 index 0000000000000..b8ada59d29d12 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uk +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.zh-CN.yaml new file mode 100644 index 0000000000000..169cd3b769bd8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uk +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.yaml b/manifests/m/Mozilla/Firefox/uk/140.0.4/Mozilla.Firefox.uk.yaml new file mode 100644 index 0000000000000..91097cd9a55d9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uk/140.0.4/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.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uk +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.installer.yaml b/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.installer.yaml new file mode 100644 index 0000000000000..8204ff8bb394c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ur +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/ur/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 611892CB1EE6A869554AB26A4F0ABF5B5DFF5F2037251263A3A83E8975E0F9C4 + ProductCode: Mozilla Firefox 140.0.4 (x86 ur) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/ur/Firefox%20Setup%20140.0.4.exe + InstallerSha256: D999797156A5C1D14E0FFF85B964EC4BD87631CF52D0359B1ED791E807EFB05F + ProductCode: Mozilla Firefox 140.0.4 (x64 ur) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/ur/Firefox%20Setup%20140.0.4.exe + InstallerSha256: F685C2A78A76F4C0C867BED049F1B5AA5870E128EED190983255A2F46B4D237B + ProductCode: Mozilla Firefox 140.0.4 (arm64 ur) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..f879cc14e8d84 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ur +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.da-DK.yaml new file mode 100644 index 0000000000000..704cc6a1304d2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ur +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.de-DE.yaml new file mode 100644 index 0000000000000..3a78e6ab2d8bd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ur +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.el-GR.yaml new file mode 100644 index 0000000000000..2a4321280a1e5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ur +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.en-GB.yaml new file mode 100644 index 0000000000000..d8d1262168f1a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ur +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.en-US.yaml new file mode 100644 index 0000000000000..e202695ac1b1a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ur +PackageVersion: 140.0.4 +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 (ur) +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: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.es-MX.yaml new file mode 100644 index 0000000000000..5e051151328ca --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ur +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.fr-FR.yaml new file mode 100644 index 0000000000000..98e67e95dc3d8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ur +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.hu-HU.yaml new file mode 100644 index 0000000000000..ba45565416276 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ur +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.ja-JP.yaml new file mode 100644 index 0000000000000..54d807bc11f25 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ur +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.nb-NO.yaml new file mode 100644 index 0000000000000..6dec35ce9c764 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ur +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.ru-RU.yaml new file mode 100644 index 0000000000000..3525353cb77fa --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ur +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.ta-IN.yaml new file mode 100644 index 0000000000000..f8a0a554e62fe --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ur +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.zh-CN.yaml new file mode 100644 index 0000000000000..d367e38449c34 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ur +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.yaml b/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.yaml new file mode 100644 index 0000000000000..eaf07e7f997de --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ur/140.0.4/Mozilla.Firefox.ur.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ur +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.installer.yaml b/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.installer.yaml new file mode 100644 index 0000000000000..164634cee47a4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uz +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/uz/Firefox%20Setup%20140.0.4.exe + InstallerSha256: F5613A912FE71CAC3017A74791194EEB6AB7E74415B869E0DBEBA87FF9D069D4 + ProductCode: Mozilla Firefox 140.0.4 (x86 uz) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/uz/Firefox%20Setup%20140.0.4.exe + InstallerSha256: ED2D58C5845D3701F78CE45073CE9B7064EE54B658D476AA62A570C1B5BE4FCB + ProductCode: Mozilla Firefox 140.0.4 (x64 uz) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/uz/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 95472E1C6824C56C60CF4B801720E72C55E2E33615B878026DD5BAE83BC81542 + ProductCode: Mozilla Firefox 140.0.4 (arm64 uz) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..03b3e63ffc295 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uz +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.da-DK.yaml new file mode 100644 index 0000000000000..74e64ae924849 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uz +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.de-DE.yaml new file mode 100644 index 0000000000000..982b6875460fa --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uz +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.el-GR.yaml new file mode 100644 index 0000000000000..8d86497e3be46 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uz +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.en-GB.yaml new file mode 100644 index 0000000000000..ed26b46f19401 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uz +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.en-US.yaml new file mode 100644 index 0000000000000..4213c45646993 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uz +PackageVersion: 140.0.4 +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 (uz) +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: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.es-MX.yaml new file mode 100644 index 0000000000000..2dafa612afe8b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uz +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.fr-FR.yaml new file mode 100644 index 0000000000000..9be8808e55233 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uz +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.hu-HU.yaml new file mode 100644 index 0000000000000..dafc0647fe276 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uz +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.ja-JP.yaml new file mode 100644 index 0000000000000..f43a423a893f9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uz +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.nb-NO.yaml new file mode 100644 index 0000000000000..f3a75c4d424a2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uz +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.ru-RU.yaml new file mode 100644 index 0000000000000..4c3fad95fe265 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uz +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.ta-IN.yaml new file mode 100644 index 0000000000000..4ae6763ef0e81 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uz +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.zh-CN.yaml new file mode 100644 index 0000000000000..19573ea8b4e9b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uz +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.yaml b/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.yaml new file mode 100644 index 0000000000000..60533852f98e1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/uz/140.0.4/Mozilla.Firefox.uz.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.uz +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.installer.yaml b/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.installer.yaml new file mode 100644 index 0000000000000..281ebcef7661e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.xh +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/xh/Firefox%20Setup%20140.0.4.exe + InstallerSha256: DC4EADEB4A5D980267E98D110662C62CAD05D5A0B6DF504406A0C007EAA5DF1D + ProductCode: Mozilla Firefox 140.0.4 (x86 xh) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/xh/Firefox%20Setup%20140.0.4.exe + InstallerSha256: FBC22D5C32DF9884D1C83F32B47C8D32D5D7F16D2FA3107A4482114628F55148 + ProductCode: Mozilla Firefox 140.0.4 (x64 xh) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/xh/Firefox%20Setup%20140.0.4.exe + InstallerSha256: E2CC4B0546E1EAA20063E2CFDEC788A7762543DFC50177B8CBE04CB5C81268D4 + ProductCode: Mozilla Firefox 140.0.4 (arm64 xh) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..532e39045e89e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.xh +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.da-DK.yaml new file mode 100644 index 0000000000000..0023a5ca5dd4b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.xh +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.de-DE.yaml new file mode 100644 index 0000000000000..29a522e6cdf85 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.xh +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.el-GR.yaml new file mode 100644 index 0000000000000..e74e50a5104ac --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.xh +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.en-GB.yaml new file mode 100644 index 0000000000000..d9dd21bf96687 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.xh +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.en-US.yaml new file mode 100644 index 0000000000000..8e0dca44ae39c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.xh +PackageVersion: 140.0.4 +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: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.es-MX.yaml new file mode 100644 index 0000000000000..693ac9af54006 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.xh +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.fr-FR.yaml new file mode 100644 index 0000000000000..7362634b6dcb4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.xh +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.hu-HU.yaml new file mode 100644 index 0000000000000..b5752f009f447 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.xh +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.ja-JP.yaml new file mode 100644 index 0000000000000..baeeeb7966e16 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.xh +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.nb-NO.yaml new file mode 100644 index 0000000000000..e1b4f23c44ae0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.xh +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.ru-RU.yaml new file mode 100644 index 0000000000000..6090a9f17b85e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.xh +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.ta-IN.yaml new file mode 100644 index 0000000000000..c760cdeba26e2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.xh +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.zh-CN.yaml new file mode 100644 index 0000000000000..e2fa76f1a0840 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.xh +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.yaml b/manifests/m/Mozilla/Firefox/xh/140.0.4/Mozilla.Firefox.xh.yaml new file mode 100644 index 0000000000000..0f2e529ac62ea --- /dev/null +++ b/manifests/m/Mozilla/Firefox/xh/140.0.4/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.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.xh +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.installer.yaml b/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.installer.yaml new file mode 100644 index 0000000000000..4c0aa4959c9fd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.zh-CN +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/zh-CN/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 3FE255B6B0D230544BC0978DA5B640CC1946E0083994C7671FC9B92D1DC4DFD9 + ProductCode: Mozilla Firefox 140.0.4 (x86 zh-CN) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/zh-CN/Firefox%20Setup%20140.0.4.exe + InstallerSha256: BEB79725BD64009F943FA3A199F05C001AB7826FAE2E9D6EE2ECC43AC2B2BF1B + ProductCode: Mozilla Firefox 140.0.4 (x64 zh-CN) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/zh-CN/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 17D4C04199DC78D5A52C00CF6A75A6652712F2CFD44999846F48D92CAD0C0EC0 + ProductCode: Mozilla Firefox 140.0.4 (arm64 zh-CN) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..e5cd607018d09 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.zh-CN +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.da-DK.yaml new file mode 100644 index 0000000000000..138dc0b4cda00 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.zh-CN +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.de-DE.yaml new file mode 100644 index 0000000000000..c9e7da00f5aa3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.zh-CN +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.el-GR.yaml new file mode 100644 index 0000000000000..bdaae9752039b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.zh-CN +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.en-GB.yaml new file mode 100644 index 0000000000000..d1d6b102ac60a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.zh-CN +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.en-US.yaml new file mode 100644 index 0000000000000..e204848d7e78e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.zh-CN +PackageVersion: 140.0.4 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (zh-CN) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.es-MX.yaml new file mode 100644 index 0000000000000..43cc0ca0a63cb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.zh-CN +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.fr-FR.yaml new file mode 100644 index 0000000000000..dda83531dcfa3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.zh-CN +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.hu-HU.yaml new file mode 100644 index 0000000000000..bff9d41c9a6b9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.zh-CN +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.ja-JP.yaml new file mode 100644 index 0000000000000..b389ff273f424 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.zh-CN +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.nb-NO.yaml new file mode 100644 index 0000000000000..0b865d8e09b89 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.zh-CN +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.ru-RU.yaml new file mode 100644 index 0000000000000..bdfcde3d45b09 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.zh-CN +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.ta-IN.yaml new file mode 100644 index 0000000000000..fdcdce7700843 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.zh-CN +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.zh-CN.yaml new file mode 100644 index 0000000000000..784291731b241 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.zh-CN +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.yaml b/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.yaml new file mode 100644 index 0000000000000..d02f5ac9126be --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-CN/140.0.4/Mozilla.Firefox.zh-CN.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.zh-CN +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.installer.yaml b/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.installer.yaml new file mode 100644 index 0000000000000..ea09599ce3386 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.zh-TW +PackageVersion: 140.0.4 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win32/zh-TW/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 44AB356AED77DFB232E3135A29B6EDEB62B825901948D212F9D8B9F0752DA633 + ProductCode: Mozilla Firefox 140.0.4 (x86 zh-TW) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64/zh-TW/Firefox%20Setup%20140.0.4.exe + InstallerSha256: 9488B4405A717EE0F0D22EDB2FE9480EC92DA3202212C78C32C00A250BD23051 + ProductCode: Mozilla Firefox 140.0.4 (x64 zh-TW) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.0.4/win64-aarch64/zh-TW/Firefox%20Setup%20140.0.4.exe + InstallerSha256: B5E1186C828E05A39EF45FDE1BF409D5B625706E25DE05A3DFC031F2ED744931 + ProductCode: Mozilla Firefox 140.0.4 (arm64 zh-TW) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..40df1a3827141 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.zh-TW +PackageVersion: 140.0.4 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.da-DK.yaml new file mode 100644 index 0000000000000..a84e19de9fc3f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.zh-TW +PackageVersion: 140.0.4 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.de-DE.yaml new file mode 100644 index 0000000000000..cf97c8281a812 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.zh-TW +PackageVersion: 140.0.4 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.el-GR.yaml new file mode 100644 index 0000000000000..20b5151c463ea --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.el-GR.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.zh-TW +PackageVersion: 140.0.4 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.en-GB.yaml new file mode 100644 index 0000000000000..9f370cd2d9094 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.zh-TW +PackageVersion: 140.0.4 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.en-US.yaml new file mode 100644 index 0000000000000..0558f598b3024 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.zh-TW +PackageVersion: 140.0.4 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (zh-TW) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Fixed + - Fixed incorrect font selection in some cases when attempting to use color fonts. (Bug 1971053) + - Fixed the search results not updating when switching source during a file search in the Developer Tool's debugger. (Bug 1971094) + - Reference link to 140.0.2 release notes. +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.es-MX.yaml new file mode 100644 index 0000000000000..d7ca0c4d14989 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.zh-TW +PackageVersion: 140.0.4 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.fr-FR.yaml new file mode 100644 index 0000000000000..5e9f9fcac1c48 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.zh-TW +PackageVersion: 140.0.4 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.hu-HU.yaml new file mode 100644 index 0000000000000..f728dee50d2a1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.zh-TW +PackageVersion: 140.0.4 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.ja-JP.yaml new file mode 100644 index 0000000000000..cdfaa91c4b4a0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.zh-TW +PackageVersion: 140.0.4 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.nb-NO.yaml new file mode 100644 index 0000000000000..d2873eb51da46 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.zh-TW +PackageVersion: 140.0.4 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.ru-RU.yaml new file mode 100644 index 0000000000000..b7935e58e7a7a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.zh-TW +PackageVersion: 140.0.4 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.ta-IN.yaml new file mode 100644 index 0000000000000..26d6137f3c0a6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.zh-TW +PackageVersion: 140.0.4 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.zh-CN.yaml new file mode 100644 index 0000000000000..5fc70328580ff --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.zh-TW +PackageVersion: 140.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.0.4/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.yaml b/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.yaml new file mode 100644 index 0000000000000..80813c3eac362 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-TW/140.0.4/Mozilla.Firefox.zh-TW.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.zh-TW +PackageVersion: 140.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/matchmycolor/Colibri/3/3.8.12.20450/matchmycolor.Colibri.3.installer.yaml b/manifests/m/matchmycolor/Colibri/3/3.8.12.20450/matchmycolor.Colibri.3.installer.yaml new file mode 100644 index 0000000000000..62f79a2bde02a --- /dev/null +++ b/manifests/m/matchmycolor/Colibri/3/3.8.12.20450/matchmycolor.Colibri.3.installer.yaml @@ -0,0 +1,15 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: matchmycolor.Colibri.3 +PackageVersion: 3.8.12.20450 +InstallerType: exe +InstallerSwitches: + Silent: SILENT=TRUE +ReleaseDate: 2022-10-07 +Installers: +- Architecture: x86 + InstallerUrl: https://cdn.matchmycolor.com/downloads/ColibriInstaller_3.8.12.20450.exe + InstallerSha256: 6A465EBDA3B2F6EFF0B6AD610F29A7B0610DB166BFB7BB1C3AC9FADBEB8BB8EF +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/matchmycolor/Colibri/3/3.8.12.20487/matchmycolor.Colibri.3.locale.en-US.yaml b/manifests/m/matchmycolor/Colibri/3/3.8.12.20450/matchmycolor.Colibri.3.locale.en-US.yaml similarity index 85% rename from manifests/m/matchmycolor/Colibri/3/3.8.12.20487/matchmycolor.Colibri.3.locale.en-US.yaml rename to manifests/m/matchmycolor/Colibri/3/3.8.12.20450/matchmycolor.Colibri.3.locale.en-US.yaml index b8af3fd91c7b6..87a2edfdbf4fc 100644 --- a/manifests/m/matchmycolor/Colibri/3/3.8.12.20487/matchmycolor.Colibri.3.locale.en-US.yaml +++ b/manifests/m/matchmycolor/Colibri/3/3.8.12.20450/matchmycolor.Colibri.3.locale.en-US.yaml @@ -1,17 +1,17 @@ -# Created using wingetcreate 1.2.5.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: matchmycolor.Colibri.3 -PackageVersion: 3.8.12.20487 -PackageLocale: en-US -Publisher: matchmycolor -PublisherUrl: https://www.matchmycolor.com/ -PublisherSupportUrl: https://www.matchmycolor.com/en/support-and-services/support-desk.html -PrivacyUrl: https://www.matchmycolor.com/en/company-overview/privacy-statement.html -PackageName: Colibri 3 -PackageUrl: https://www.matchmycolor.com/en/landing-page-colibri-platform/landing-page-colibri-platform.html -License: commercial -Copyright: All rights reserved -ShortDescription: Colibri color management systems help brand owners, brand management companies, designers, and material manufacturers and suppliers to specify, manage, produce and communicate color. -ManifestType: defaultLocale -ManifestVersion: 1.4.0 +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: matchmycolor.Colibri.3 +PackageVersion: 3.8.12.20450 +PackageLocale: en-US +Publisher: matchmycolor +PublisherUrl: https://www.matchmycolor.com/ +PublisherSupportUrl: https://www.matchmycolor.com/en/support-and-services/support-desk.html +PrivacyUrl: https://www.matchmycolor.com/en/company-overview/privacy-statement.html +PackageName: Colibri 3 +PackageUrl: https://www.matchmycolor.com/en/landing-page-colibri-platform/landing-page-colibri-platform.html +License: commercial +Copyright: All rights reserved +ShortDescription: Colibri color management systems help brand owners, brand management companies, designers, and material manufacturers and suppliers to specify, manage, produce and communicate color. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/matchmycolor/Colibri/3/3.8.12.20487/matchmycolor.Colibri.3.yaml b/manifests/m/matchmycolor/Colibri/3/3.8.12.20450/matchmycolor.Colibri.3.yaml similarity index 55% rename from manifests/m/matchmycolor/Colibri/3/3.8.12.20487/matchmycolor.Colibri.3.yaml rename to manifests/m/matchmycolor/Colibri/3/3.8.12.20450/matchmycolor.Colibri.3.yaml index 9817da8bb025f..61192764cb513 100644 --- a/manifests/m/matchmycolor/Colibri/3/3.8.12.20487/matchmycolor.Colibri.3.yaml +++ b/manifests/m/matchmycolor/Colibri/3/3.8.12.20450/matchmycolor.Colibri.3.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.2.5.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: matchmycolor.Colibri.3 -PackageVersion: 3.8.12.20487 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: matchmycolor.Colibri.3 +PackageVersion: 3.8.12.20450 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/matchmycolor/Colibri/3/3.8.12.20487/matchmycolor.Colibri.3.installer.yaml b/manifests/m/matchmycolor/Colibri/3/3.8.12.20487/matchmycolor.Colibri.3.installer.yaml deleted file mode 100644 index f4249bc2b1850..0000000000000 --- a/manifests/m/matchmycolor/Colibri/3/3.8.12.20487/matchmycolor.Colibri.3.installer.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Created using wingetcreate 1.2.5.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: matchmycolor.Colibri.3 -PackageVersion: 3.8.12.20487 -Installers: -- InstallerUrl: https://cdn.matchmycolor.com/colibri/3.8.12/ColibriInstaller_3.8.12.20487.exe - Architecture: x86 - InstallerType: exe - InstallerSha256: 36C96B993FE2B7DFE6C42FDC89682E5FCCD94D89E29E09581C39097658CF1817 - InstallerSwitches: - Silent: SILENT=TRUE -ManifestType: installer -ManifestVersion: 1.4.0 diff --git a/manifests/m/monkeyWie/Gopeed/Web/1.7.1/monkeyWie.Gopeed.Web.installer.yaml b/manifests/m/monkeyWie/Gopeed/Web/1.7.1/monkeyWie.Gopeed.Web.installer.yaml new file mode 100644 index 0000000000000..c0d10ffd02a64 --- /dev/null +++ b/manifests/m/monkeyWie/Gopeed/Web/1.7.1/monkeyWie.Gopeed.Web.installer.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: monkeyWie.Gopeed.Web +PackageVersion: 1.7.1 +InstallerType: zip +NestedInstallerType: portable +Commands: +- gopeed +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + NestedInstallerFiles: + - RelativeFilePath: gopeed-web-v1.7.1-windows-386\gopeed.exe + PortableCommandAlias: gopeed + InstallerUrl: https://github.com/GopeedLab/gopeed/releases/download/v1.7.1/gopeed-web-v1.7.1-windows-386.zip + InstallerSha256: BEC4BA9DACD0A53C708E2C0126616372D99C0F72574746D623C5404FC6774AE2 +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: gopeed-web-v1.7.1-windows-amd64\gopeed.exe + PortableCommandAlias: gopeed + InstallerUrl: https://github.com/GopeedLab/gopeed/releases/download/v1.7.1/gopeed-web-v1.7.1-windows-amd64.zip + InstallerSha256: EDEC2158C9350949AD531D01583B1A014D38425406B6DA3A12134CDC6166FC21 +- Architecture: arm64 + NestedInstallerFiles: + - RelativeFilePath: gopeed-web-v1.7.1-windows-arm64\gopeed.exe + PortableCommandAlias: gopeed + InstallerUrl: https://github.com/GopeedLab/gopeed/releases/download/v1.7.1/gopeed-web-v1.7.1-windows-arm64.zip + InstallerSha256: BC9C25E18C894C03FB2046734C5BA2EB7A4752B3E3A92EA442AFC0C115DA4EB9 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/monkeyWie/Gopeed/Web/1.7.1/monkeyWie.Gopeed.Web.locale.en-US.yaml b/manifests/m/monkeyWie/Gopeed/Web/1.7.1/monkeyWie.Gopeed.Web.locale.en-US.yaml new file mode 100644 index 0000000000000..20ef8625ac91a --- /dev/null +++ b/manifests/m/monkeyWie/Gopeed/Web/1.7.1/monkeyWie.Gopeed.Web.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: monkeyWie.Gopeed.Web +PackageVersion: 1.7.1 +PackageLocale: en-US +Publisher: monkeyWie +PublisherUrl: https://gopeed.com/ +PublisherSupportUrl: https://github.com/GopeedLab/gopeed/issues +PackageName: Gopeed Web +PackageUrl: https://gopeed.com/ +License: GPL-3.0 +LicenseUrl: https://github.com/GopeedLab/gopeed/blob/HEAD/LICENSE +ShortDescription: Open source, lightweight, native, supports (HTTP, BitTorrent, Magnet , etc.) for downloading. +Description: Gopeed (full name Go Speed), a high-speed downloader developed by Golang + Flutter, supports (HTTP, BitTorrent, Magnet) protocol, and supports all platforms. In addition to basic download functions, Gopeed is also a highly customizable downloader that supports implementing more features through integration with APIs or installation and development of extensions. +Tags: +- download +- downloader +ReleaseNotes: |- + 🆕 Features + - feat: Open in Folder with support for 3rd file manager @821869798 (#1045) + - feat: web support relative base path @monkeyWie (#1001) + 🐛 Bug Fixes + - fix: do not add external tracker to a private torrent @charleshuang3 (#1011) + - fix: json syntax error in bt config @charleshuang3 (#1014) + 🚀 CI/CD + - ci: workaround for app_indicator_new is deprecated @monkeyWie (#986) + - ci: fix go 1.24 code coverage @monkeyWie (#988) + 🌎 Internationalization + - feat: Translation into Portuguese (Brazil) @tsabaia (#1047) +ReleaseNotesUrl: https://github.com/GopeedLab/gopeed/releases/tag/v1.7.1 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.gopeed.com/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/monkeyWie/Gopeed/Web/1.7.1/monkeyWie.Gopeed.Web.locale.zh-CN.yaml b/manifests/m/monkeyWie/Gopeed/Web/1.7.1/monkeyWie.Gopeed.Web.locale.zh-CN.yaml new file mode 100644 index 0000000000000..60af4dcc4c45f --- /dev/null +++ b/manifests/m/monkeyWie/Gopeed/Web/1.7.1/monkeyWie.Gopeed.Web.locale.zh-CN.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: monkeyWie.Gopeed.Web +PackageVersion: 1.7.1 +PackageLocale: zh-CN +Publisher: monkeyWie +PublisherUrl: https://gopeed.com/zh-CN +PublisherSupportUrl: https://github.com/GopeedLab/gopeed/issues +PackageName: Gopeed Web +PackageUrl: https://gopeed.com/zh-CN +License: GPL-3.0 +LicenseUrl: https://github.com/GopeedLab/gopeed/blob/HEAD/LICENSE +ShortDescription: 开源、轻量、原生,支持(HTTP、BitTorrent、Magnet 等)协议下载。 +Description: Gopeed(全称 Go Speed),直译过来中文名叫做够快下载器(不是狗屁下载器!),是一款由 Golang+Flutter 开发的高速下载器,支持(HTTP、BitTorrent、Magnet)协议下载,并且支持全平台使用。除了基本的下载功能外,Gopeed 还是一款高度可定制化的下载器,支持通过对接 APIs 或者安装和开发扩展来实现更多的功能。 +Tags: +- 下载 +- 下载器 +ReleaseNotes: |- + 🆕 功能 + - feat: 在文件夹中打开,支持第三方文件管理器 @821869798 (#1045) + - feat: Web 支持相对路径 @monkeyWie (#1001) + 🐛 Bug 修复 + - fix: 不将外部跟踪器添加到私有 Torrent @charleshuang3 (#1011) + - fix: BT 配置中的 JSON 语法错误 @charleshuang3 (#1014) + 🚀 CI/CD + - CI: app_indicator_new 弃用解决 @monkeyWie (#986) + - CI: 修复 Go 1.24 代码覆盖率 @monkeyWie (#988) + 🌎 国际化 + - feat: 新增葡萄牙语 (巴西) @tsabaia (#1047) +ReleaseNotesUrl: https://github.com/GopeedLab/gopeed/releases/tag/v1.7.1 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.gopeed.com/zh/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/monkeyWie/Gopeed/Web/1.7.1/monkeyWie.Gopeed.Web.yaml b/manifests/m/monkeyWie/Gopeed/Web/1.7.1/monkeyWie.Gopeed.Web.yaml new file mode 100644 index 0000000000000..7c852fd0b7566 --- /dev/null +++ b/manifests/m/monkeyWie/Gopeed/Web/1.7.1/monkeyWie.Gopeed.Web.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: monkeyWie.Gopeed.Web +PackageVersion: 1.7.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/mvdan/shfmt/3.12.0/mvdan.shfmt.installer.yaml b/manifests/m/mvdan/shfmt/3.12.0/mvdan.shfmt.installer.yaml new file mode 100644 index 0000000000000..22874f4ec3459 --- /dev/null +++ b/manifests/m/mvdan/shfmt/3.12.0/mvdan.shfmt.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: mvdan.shfmt +PackageVersion: 3.12.0 +InstallerType: portable +Commands: +- shfmt +FileExtensions: +- sh +ReleaseDate: 2025-07-06 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/mvdan/sh/releases/download/v3.12.0/shfmt_v3.12.0_windows_386.exe + InstallerSha256: 92C1EF0AF344A10F2CEFE3CE4BC6793AE8B3719AC08FC01802BBD8EAE105E534 +- Architecture: x64 + InstallerUrl: https://github.com/mvdan/sh/releases/download/v3.12.0/shfmt_v3.12.0_windows_amd64.exe + InstallerSha256: C8BDA517BA1C640CE4A715C0FA665439DDBE4357BA5E9B77B0E51E70E2B9C94B +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/mvdan/shfmt/3.12.0/mvdan.shfmt.locale.en-US.yaml b/manifests/m/mvdan/shfmt/3.12.0/mvdan.shfmt.locale.en-US.yaml new file mode 100644 index 0000000000000..66ca86b9004c6 --- /dev/null +++ b/manifests/m/mvdan/shfmt/3.12.0/mvdan.shfmt.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.10.0.schema.json + +PackageIdentifier: mvdan.shfmt +PackageVersion: 3.12.0 +PackageLocale: en-US +Publisher: Daniel Martí +PublisherUrl: https://mvdan.cc/ +PublisherSupportUrl: https://github.com/mvdan/sh/issues +Author: Daniel Martí +PackageName: shfmt +PackageUrl: https://github.com/mvdan/sh +License: BSD-3-Clause +LicenseUrl: https://github.com/mvdan/sh/blob/master/LICENSE +Copyright: Copyright (c) 2024, Daniel Martí. All rights reserved. +ShortDescription: Format shell programs +Tags: +- bash +- beautify +- format +- formatter +- shell +ReleaseNotes: |- + - The mvdan-sh JS package is discontinued in favor of sh-syntax - #1145 + - cmd/shfmt + - Support the "simplify" and "minify" flags via EditorConfig - #819 + - Do not allow --write to replace non-regular files - #843 + - interp + - Add IsBuiltin to check if a command name is a shell built-in - #1164 + - Add HandlerContext.Builtin to allow ExecHandlerFunc to call built-ins + - Initial support for $! and wait PID - #221 + - Return non-fatal ExecHandlerFunc errors via the Runner.Run API + - Add HandlerContext.Pos to provide handlers with source positions + - Deprecate NewExitStatus and IsExitStatus in favor of ExitStatus + - Fix wait to always return the status of the last given job + - Copy all env vars for background subshells to avoid data races + - Support reading random numbers via $RANDOM and $SRANDOM + - Set $BASH_REMATCH when matching regular expressions via =~ + - Support modifying local vars from the parent calling function + - expand + - Adjust which backslash sequences are expanded in here-docs - #1138 + - Tweak tilde expansions to match Bash semantics + - pattern + - Remove the flawed and broken Braces mode; use syntax.SplitBraces instead + - Tweak ** to only act as "globstar" when alone as a path element - #1149 + - Tweak * and ** to not match leading dots in basenames + - Add a NoGlobStar mode to match the POSIX semantics + - fileutil + - Treat all non-regular files as definitely not shell scripts - #1089 +ReleaseNotesUrl: https://github.com/mvdan/sh/releases/tag/v3.12.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/mvdan/shfmt/3.12.0/mvdan.shfmt.locale.zh-CN.yaml b/manifests/m/mvdan/shfmt/3.12.0/mvdan.shfmt.locale.zh-CN.yaml new file mode 100644 index 0000000000000..43a30b6dc0e28 --- /dev/null +++ b/manifests/m/mvdan/shfmt/3.12.0/mvdan.shfmt.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: mvdan.shfmt +PackageVersion: 3.12.0 +PackageLocale: zh-CN +Publisher: Daniel Martí +PublisherUrl: https://mvdan.cc/ +PublisherSupportUrl: https://github.com/mvdan/sh/issues +Author: Daniel Martí +PackageName: shfmt +PackageUrl: https://github.com/mvdan/sh +License: BSD-3-Clause +LicenseUrl: https://github.com/mvdan/sh/blob/master/LICENSE +Copyright: Copyright (c) 2024, Daniel Martí. All rights reserved. +ShortDescription: 格式化 shell 程序 +Tags: +- bash +- shell +- 格式化 +- 美化 +ReleaseNotesUrl: https://github.com/mvdan/sh/releases/tag/v3.12.0 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/mvdan/shfmt/3.12.0/mvdan.shfmt.yaml b/manifests/m/mvdan/shfmt/3.12.0/mvdan.shfmt.yaml new file mode 100644 index 0000000000000..6505d1ed238a7 --- /dev/null +++ b/manifests/m/mvdan/shfmt/3.12.0/mvdan.shfmt.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: mvdan.shfmt +PackageVersion: 3.12.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/n/Newforma/Konekt/Addin/Autodesk/1.144.0/Newforma.Konekt.Addin.Autodesk.installer.yaml b/manifests/n/Newforma/Konekt/Addin/Autodesk/1.144.0/Newforma.Konekt.Addin.Autodesk.installer.yaml new file mode 100644 index 0000000000000..24ac8e1f90378 --- /dev/null +++ b/manifests/n/Newforma/Konekt/Addin/Autodesk/1.144.0/Newforma.Konekt.Addin.Autodesk.installer.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Newforma.Konekt.Addin.Autodesk +PackageVersion: 1.144.0 +InstallerType: wix +Scope: machine +ProductCode: '{722DC456-0289-495E-8E1E-A2FE2269611D}' +AppsAndFeaturesEntries: +- UpgradeCode: '{DE5AD016-2358-484A-A948-611F99E33EE3}' +Installers: +- Architecture: x64 + InstallerUrl: https://cdn.bimtrackapp.co/staticcontentcontainer/addins/autodesk/Newforma%20Konekt%20Autodesk%20Addins.msi + InstallerSha256: BF6ED9A0A2424CC7380E3DF16E0DDE13E01BC54F3B37BCAC7F310480C4A59DC3 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/n/Newforma/Konekt/Addin/Autodesk/1.144.0/Newforma.Konekt.Addin.Autodesk.locale.en-US.yaml b/manifests/n/Newforma/Konekt/Addin/Autodesk/1.144.0/Newforma.Konekt.Addin.Autodesk.locale.en-US.yaml new file mode 100644 index 0000000000000..24d4729793356 --- /dev/null +++ b/manifests/n/Newforma/Konekt/Addin/Autodesk/1.144.0/Newforma.Konekt.Addin.Autodesk.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Newforma.Konekt.Addin.Autodesk +PackageVersion: 1.144.0 +PackageLocale: en-US +Publisher: Newforma +PublisherUrl: https://www.newforma.com/ +PublisherSupportUrl: https://help.newforma.com/ +PrivacyUrl: https://www.newforma.com/privacy-policy/ +Author: Newforma, Inc. +PackageName: Newforma Konekt Add-ins for Autodesk products +PackageUrl: https://www.newforma.com/resources/app-marketplace/ +License: Proprietary +LicenseUrl: https://www.newforma.com/terms-and-conditions-for-newforma-konekt/ +Copyright: © 2025 Newforma, Inc. +CopyrightUrl: https://www.newforma.com/terms-and-conditions-for-newforma-konekt/ +ShortDescription: Newforma Konekt Add-ins for Autodesk products +Description: |- + Simplify your communication workflow. Newforma Konekt centralizes communications across platforms and brings transparency and efficiency to your projects. No more time wasted searching through emails and models to find and resolve the issues that matter. + Keep track of issues across different teams and projects. Transpose issues onto different documents in the latest version. Stay up-to-date with issue resolution progress, no matter what document or design environment you’re working in. + Track issues found during technical coordination until they’re solved. Log issues on the fly during design review and/or coordination meetings, view complex mechanical issues in 3D in Newforma Konekt’s web viewer, and share them with team members who can resolve them directly in their authoring software. +# Moniker: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/n/Newforma/Konekt/Addin/Autodesk/1.144.0/Newforma.Konekt.Addin.Autodesk.locale.zh-CN.yaml b/manifests/n/Newforma/Konekt/Addin/Autodesk/1.144.0/Newforma.Konekt.Addin.Autodesk.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f2dca35d5dae7 --- /dev/null +++ b/manifests/n/Newforma/Konekt/Addin/Autodesk/1.144.0/Newforma.Konekt.Addin.Autodesk.locale.zh-CN.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Newforma.Konekt.Addin.Autodesk +PackageVersion: 1.144.0 +PackageLocale: zh-CN +# Publisher: +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +# PackageName: +# PackageUrl: +License: 专有软件 +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: 适用于 Autodesk 产品的 Newforma Konekt 插件 +Description: |- + 简化您的沟通流程。Newforma Konekt 集中管理跨平台通讯,为项目带来透明度和高效性。无需再耗费时间在邮件和模型中搜寻关键问题并解决。 + 跨团队、跨项目追踪问题。将问题映射至最新版本的不同文档中。无论您使用何种文档或设计环境,都能实时掌握问题解决进展。 + 全程跟踪技术协调中发现的问题直至解决。在设计评审或协调会议中即时记录问题,通过 Newforma Konekt 网页浏览器三维查看复杂机械问题,并直接分享给能在原创作软件中解决问题的团队成员。 +# Moniker: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/n/Newforma/Konekt/Addin/Autodesk/1.144.0/Newforma.Konekt.Addin.Autodesk.yaml b/manifests/n/Newforma/Konekt/Addin/Autodesk/1.144.0/Newforma.Konekt.Addin.Autodesk.yaml new file mode 100644 index 0000000000000..776b3381daf1a --- /dev/null +++ b/manifests/n/Newforma/Konekt/Addin/Autodesk/1.144.0/Newforma.Konekt.Addin.Autodesk.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Newforma.Konekt.Addin.Autodesk +PackageVersion: 1.144.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/n/namazso/SecureUXTheme/4.0.0/namazso.SecureUXTheme.installer.yaml b/manifests/n/namazso/SecureUXTheme/4.0.0/namazso.SecureUXTheme.installer.yaml new file mode 100644 index 0000000000000..5230a4b8b3a28 --- /dev/null +++ b/manifests/n/namazso/SecureUXTheme/4.0.0/namazso.SecureUXTheme.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=QUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: namazso.SecureUXTheme +PackageVersion: 4.0.0 +InstallerType: wix +Scope: machine +InstallerSuccessCodes: +- 3010 +UpgradeBehavior: install +ReleaseDate: 2025-06-24 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/namazso/SecureUxTheme/releases/download/v4.0.0/SecureUxTheme_x86.msi + InstallerSha256: CE9D803C1717EF2F67DC55A30DBDF5FC83A80CBD5E7CEC5DC42304696C2EB816 + ProductCode: '{0B94E364-93FB-404B-BBFD-1D2EE8E1F8E6}' + AppsAndFeaturesEntries: + - UpgradeCode: '{3FF010A5-2E94-4621-A260-3A7ABCDDB37C}' +- Architecture: x64 + InstallerUrl: https://github.com/namazso/SecureUxTheme/releases/download/v4.0.0/SecureUxTheme_x64.msi + InstallerSha256: AF6AB67E0A283A0138B827B6731D5BB1F4FFC59E6D905F1C41567EB3305A9537 + ProductCode: '{D686CD0E-139E-4599-A4E2-1B9BC0B72F73}' + AppsAndFeaturesEntries: + - UpgradeCode: '{965B5B74-4040-4E89-947F-AF8D99A76706}' +- Architecture: arm64 + InstallerUrl: https://github.com/namazso/SecureUxTheme/releases/download/v4.0.0/SecureUxTheme_ARM64.msi + InstallerSha256: 2E5CF62249ABDB1D9F6C3B81567587BD13C2094A067B2FA753FDE9BD31A14DFB + ProductCode: '{184D9242-C242-48E8-9F63-1D2EA83E22E7}' + AppsAndFeaturesEntries: + - UpgradeCode: '{E0E6C0EA-103B-4E8A-B1A9-1703853A49F4}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/n/namazso/SecureUXTheme/4.0.0/namazso.SecureUXTheme.locale.en-US.yaml b/manifests/n/namazso/SecureUXTheme/4.0.0/namazso.SecureUXTheme.locale.en-US.yaml new file mode 100644 index 0000000000000..be9e56f734e2a --- /dev/null +++ b/manifests/n/namazso/SecureUXTheme/4.0.0/namazso.SecureUXTheme.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=QUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: namazso.SecureUXTheme +PackageVersion: 4.0.0 +PackageLocale: en-US +Publisher: namazso +PublisherUrl: https://namazso.eu/ +PublisherSupportUrl: https://github.com/namazso/SecureUxTheme/issues +# PrivacyUrl: +# Author: +PackageName: SecureUxTheme +PackageUrl: https://github.com/namazso/SecureUxTheme +License: LGPL-2.1 +LicenseUrl: https://github.com/namazso/SecureUxTheme/blob/HEAD/COPYING +Copyright: Copyright (C) 2025 namazso +# CopyrightUrl: +ShortDescription: 🎨 A secure boot compatible in-memory UxTheme patcher that removes signature verification of styles in Windows. +# Description: +# Moniker: +Tags: +- customization +- ricing +- style +- theme +- uxstyle +- uxtheme +- windows +- windows-10 +- windows-8 +- windows-8-1 +ReleaseNotes: |- + Important + If you have a previous version installed, you will have to use ThemeTool from the previous release to uninstall it first. The installer will not let you install until that happens. + - Patching style files is no longer needed + - Removed ThemeTool. If you used its functionality, please see ThemeToolSharp + - Removed ThemeDll + - Removed ThemeLib + - Themes can be changed from immersive System Settings and Personalization + - ARM64X support + - Installers are now MSI +ReleaseNotesUrl: https://github.com/namazso/SecureUxTheme/releases/tag/v4.0.0 +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/namazso/SecureUxTheme/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/n/namazso/SecureUXTheme/4.0.0/namazso.SecureUXTheme.locale.zh-CN.yaml b/manifests/n/namazso/SecureUXTheme/4.0.0/namazso.SecureUXTheme.locale.zh-CN.yaml new file mode 100644 index 0000000000000..c737e5b399229 --- /dev/null +++ b/manifests/n/namazso/SecureUXTheme/4.0.0/namazso.SecureUXTheme.locale.zh-CN.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=QUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: namazso.SecureUXTheme +PackageVersion: 4.0.0 +PackageLocale: zh-CN +# Publisher: +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +# PackageName: +# PackageUrl: +# License: +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: 🎨 一款兼容安全启动的内存式 UxTheme 补丁工具,用于移除 Windows 系统主题签名验证。 +# Description: +# Moniker: +标签: +- uxstyle +- uxtheme +- windows +- windows-10 +- windows-8 +- windows-8-1 +- 主题 +- 美化 +- 自定义 +- 风格 +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/n/namazso/SecureUXTheme/4.0.0/namazso.SecureUXTheme.yaml b/manifests/n/namazso/SecureUXTheme/4.0.0/namazso.SecureUXTheme.yaml new file mode 100644 index 0000000000000..e4fe1108dcfa4 --- /dev/null +++ b/manifests/n/namazso/SecureUXTheme/4.0.0/namazso.SecureUXTheme.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=QUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: namazso.SecureUXTheme +PackageVersion: 4.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/o/Ollama/Ollama/0.9.6/Ollama.Ollama.installer.yaml b/manifests/o/Ollama/Ollama/0.9.6/Ollama.Ollama.installer.yaml new file mode 100644 index 0000000000000..a4e0466e81bc6 --- /dev/null +++ b/manifests/o/Ollama/Ollama/0.9.6/Ollama.Ollama.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Ollama.Ollama +PackageVersion: 0.9.6 +InstallerType: inno +Scope: user +UpgradeBehavior: install +Commands: +- ollama +ProductCode: '{44E83376-CE68-45EB-8FC1-393500EB558C}_is1' +ReleaseDate: 2025-07-08 +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\Programs\Ollama' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ollama/ollama/releases/download/v0.9.6/OllamaSetup.exe + InstallerSha256: 8F5FB8C0CF1558C9EC3A5399056A7A5C2282C12729B40B853DC62E7D3A1E1A3F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/o/Ollama/Ollama/0.9.6/Ollama.Ollama.locale.en-US.yaml b/manifests/o/Ollama/Ollama/0.9.6/Ollama.Ollama.locale.en-US.yaml new file mode 100644 index 0000000000000..42a626e71c553 --- /dev/null +++ b/manifests/o/Ollama/Ollama/0.9.6/Ollama.Ollama.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Ollama.Ollama +PackageVersion: 0.9.6 +PackageLocale: en-US +Publisher: Ollama +PublisherUrl: https://ollama.com/ +PublisherSupportUrl: https://github.com/ollama/ollama/issues +PackageName: Ollama +PackageUrl: https://ollama.com/ +License: MIT +LicenseUrl: https://github.com/ollama/ollama/blob/HEAD/LICENSE +Copyright: Copyright (c) Ollama +ShortDescription: Get up and running with large language models locally. +Tags: +- ai +- chatbot +- deepseek +- large-language-model +- llama +- llm +- mistral +- qwen +ReleaseNotes: |- + What's Changed + - Fixed styling issue in launch screen + - tool_name can now be provided in messages with "role": "tool" using the /api/chat endpoint + New Contributors + - @vrampal made their first contribution in https://github.com/ollama/ollama/pull/9681 + Full Changelog: https://github.com/ollama/ollama/compare/v0.9.5...v0.9.6-rc0 +ReleaseNotesUrl: https://github.com/ollama/ollama/releases/tag/v0.9.6 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://github.com/ollama/ollama/tree/main/docs +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/o/Ollama/Ollama/0.9.6/Ollama.Ollama.locale.zh-CN.yaml b/manifests/o/Ollama/Ollama/0.9.6/Ollama.Ollama.locale.zh-CN.yaml new file mode 100644 index 0000000000000..d19cbf3a30597 --- /dev/null +++ b/manifests/o/Ollama/Ollama/0.9.6/Ollama.Ollama.locale.zh-CN.yaml @@ -0,0 +1,30 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Ollama.Ollama +PackageVersion: 0.9.6 +PackageLocale: zh-CN +Publisher: Ollama +PublisherUrl: https://ollama.com/ +PublisherSupportUrl: https://github.com/ollama/ollama/issues +PackageName: Ollama +PackageUrl: https://ollama.com/ +License: MIT +LicenseUrl: https://github.com/ollama/ollama/blob/main/LICENSE +Copyright: Copyright (c) Ollama +ShortDescription: 在本地启动并运行大型语言模型 +Tags: +- llama +- llm +- mistral +- 人工智能 +- 大语言模型 +- 深度求索 +- 聊天机器人 +- 通义千问 +ReleaseNotesUrl: https://github.com/ollama/ollama/releases/tag/v0.9.6 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://github.com/ollama/ollama/tree/main/docs +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/o/Ollama/Ollama/0.9.6/Ollama.Ollama.yaml b/manifests/o/Ollama/Ollama/0.9.6/Ollama.Ollama.yaml new file mode 100644 index 0000000000000..62f9db5af5db9 --- /dev/null +++ b/manifests/o/Ollama/Ollama/0.9.6/Ollama.Ollama.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Ollama.Ollama +PackageVersion: 0.9.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/o/Omnissa/WorkspaceONEIntelligentHub/24.10.11.0/Omnissa.WorkspaceONEIntelligentHub.installer.yaml b/manifests/o/Omnissa/WorkspaceONEIntelligentHub/24.10.11.0/Omnissa.WorkspaceONEIntelligentHub.installer.yaml new file mode 100644 index 0000000000000..b58b73246beae --- /dev/null +++ b/manifests/o/Omnissa/WorkspaceONEIntelligentHub/24.10.11.0/Omnissa.WorkspaceONEIntelligentHub.installer.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Omnissa.WorkspaceONEIntelligentHub +PackageVersion: 24.10.11.0 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLDIR="" +Protocols: +- ws1winhub +AppsAndFeaturesEntries: +- UpgradeCode: '{E1078D2D-8C35-4B53-B0BD-4DB4754FC261}' +Installers: +- Architecture: x64 + InstallerUrl: https://packages.omnissa.com/wsone/AirwatchAgent.msi + InstallerSha256: 61E15E8326CB5FC5685A62D9C75F30FFFFCBFAAAA4D83925A806E8DA01FE0EDF + ProductCode: '{3FA4B6AA-4869-07CE-DD12-FA0225448598}' +- Architecture: arm64 + InstallerUrl: https://packages.omnissa.com/wsone/AirWatchAgentarm64.msi + InstallerSha256: E9FE26BE4E94AA9CF54CABF682C102A06313C9D136D04B530F7061D1BCFAAAA4 + ProductCode: '{AA9CD8DC-A8BC-EB64-895C-2FAF469D9AE7}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/o/Omnissa/WorkspaceONEIntelligentHub/24.10.11.0/Omnissa.WorkspaceONEIntelligentHub.locale.en-US.yaml b/manifests/o/Omnissa/WorkspaceONEIntelligentHub/24.10.11.0/Omnissa.WorkspaceONEIntelligentHub.locale.en-US.yaml new file mode 100644 index 0000000000000..538594c547750 --- /dev/null +++ b/manifests/o/Omnissa/WorkspaceONEIntelligentHub/24.10.11.0/Omnissa.WorkspaceONEIntelligentHub.locale.en-US.yaml @@ -0,0 +1,54 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Omnissa.WorkspaceONEIntelligentHub +PackageVersion: 24.10.11.0 +PackageLocale: en-US +Publisher: Omnissa, LLC. +PublisherUrl: https://www.omnissa.com/ +PublisherSupportUrl: https://customerconnect.omnissa.com/ +PrivacyUrl: https://www.omnissa.com/trust-center/#privacy-notices +Author: Omnissa, LLC +PackageName: Workspace ONE Intelligent Hub Installer +PackageUrl: https://www.getwsone.com/ +License: Proprietary +LicenseUrl: https://www.omnissa.com/general-terms/ +Copyright: Copyright (C) 2000-2025 Omnissa. All rights reserved. +# CopyrightUrl: +ShortDescription: Register your device for access to resources within your organization. +# Description: +# Moniker: +# Tags: +ReleaseNotes: |- + - New Features + - Minimum Requirements + - Resolved Issues + - Known Issues + New Features + - Bug Fixes Only + Minimum Requirements + The following are the minimum requirements for this release. + - A Microsoft supported Semi-Annual Channel Windows 11 Build / Windows 11 Version 21H2 + or Windows 10 Build / Windows 10 Version 20H2+ + - Workspace ONE UEM Console 2402 Note: Certain enhancements mentioned above require an upgraded version of UEM for full support. + - .NET Framework 4.6.2 + - Support Matrix for Workspace ONE Intelligent Hub and Application Deployment Agent (SFD) + - Internet access for Code Signing + - Recommended Hardware Specifications: + - 1Ghz processor with minimum of 4 cores + - 8GB RAM + - 256GB Hard disk space + Resolved Issues + - HUBW-18703 - Fixed issue with Windows Hub repeatedly installing select applications on devices + - HUBW-18613 - Rehydrate node cache with accurate profile status during OS upgrade to prevent reinstallation of profiles + - HUBW-18597 - Fixed issue with workflow icons getting changed when installing + - HUBW-18589 - Windows devices will not break mdm connection after the hub is deleted + Known Issues + We haven’t identified any notable known issues in this release. If you’re facing any problems, feel free to reach out to our support team. +ReleaseNotesUrl: https://docs.omnissa.com/bundle/intelligent-hub-windows-rn/page/ws1-intelligent-hub-windows-rn.html +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://docs.omnissa.com/category/Workspace_ONE_Intelligent_Hub +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/o/Omnissa/WorkspaceONEIntelligentHub/24.10.11.0/Omnissa.WorkspaceONEIntelligentHub.locale.zh-CN.yaml b/manifests/o/Omnissa/WorkspaceONEIntelligentHub/24.10.11.0/Omnissa.WorkspaceONEIntelligentHub.locale.zh-CN.yaml new file mode 100644 index 0000000000000..ceab2563e57dd --- /dev/null +++ b/manifests/o/Omnissa/WorkspaceONEIntelligentHub/24.10.11.0/Omnissa.WorkspaceONEIntelligentHub.locale.zh-CN.yaml @@ -0,0 +1,30 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Omnissa.WorkspaceONEIntelligentHub +PackageVersion: 24.10.11.0 +PackageLocale: zh-CN +# Publisher: +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +# PackageName: +# PackageUrl: +License: 专有软件 +# LicenseUrl: +Copyright: 版权所有 (C) 2000-2025 Omnissa. 保留所有权利。 +# CopyrightUrl: +ShortDescription: 注册您的设备以访问组织内的资源。 +# Description: +# Moniker: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.omnissa.com/category/Workspace_ONE_Intelligent_Hub +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/o/Omnissa/WorkspaceONEIntelligentHub/24.10.11.0/Omnissa.WorkspaceONEIntelligentHub.yaml b/manifests/o/Omnissa/WorkspaceONEIntelligentHub/24.10.11.0/Omnissa.WorkspaceONEIntelligentHub.yaml new file mode 100644 index 0000000000000..1df76e2b6d2e6 --- /dev/null +++ b/manifests/o/Omnissa/WorkspaceONEIntelligentHub/24.10.11.0/Omnissa.WorkspaceONEIntelligentHub.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Omnissa.WorkspaceONEIntelligentHub +PackageVersion: 24.10.11.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/PCSX2Team/PCSX2/2.4.0/PCSX2Team.PCSX2.installer.yaml b/manifests/p/PCSX2Team/PCSX2/2.4.0/PCSX2Team.PCSX2.installer.yaml new file mode 100644 index 0000000000000..48676a7202627 --- /dev/null +++ b/manifests/p/PCSX2Team/PCSX2/2.4.0/PCSX2Team.PCSX2.installer.yaml @@ -0,0 +1,29 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: PCSX2Team.PCSX2 +PackageVersion: 2.4.0 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{13CEE6E5-8EB3-47D3-882E-E9DBB6A3251C}}_is1' +ReleaseDate: 2025-06-29 +AppsAndFeaturesEntries: +- ProductCode: '{13CEE6E5-8EB3-47D3-882E-E9DBB6A3251C}}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\PCSX2' +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/PCSX2/pcsx2/releases/download/v2.4.0/PCSX2-v2.4.0-windows-x64-installer.exe + InstallerSha256: 24E35A64F0265080A36A77C76D87A22E7DBAA0447D26558AF106AEF63DC42CE6 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/PCSX2Team/PCSX2/2.4.0/PCSX2Team.PCSX2.locale.en-US.yaml b/manifests/p/PCSX2Team/PCSX2/2.4.0/PCSX2Team.PCSX2.locale.en-US.yaml new file mode 100644 index 0000000000000..acffab64464e5 --- /dev/null +++ b/manifests/p/PCSX2Team/PCSX2/2.4.0/PCSX2Team.PCSX2.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: PCSX2Team.PCSX2 +PackageVersion: 2.4.0 +PackageLocale: en-US +Publisher: PCSX2 Team +PublisherUrl: https://pcsx2.net/ +PublisherSupportUrl: https://github.com/PCSX2/pcsx2/issues +Author: PCSX2 Team +PackageName: PCSX2 +PackageUrl: https://pcsx2.net/ +License: GPL-3.0 +LicenseUrl: https://github.com/PCSX2/pcsx2/blob/master/COPYING.GPLv3 +Copyright: Copyright © 2025 PCSX2. +CopyrightUrl: https://pcsx2.net/intellectualproperty +ShortDescription: PCSX2 is a free and open-source PlayStation 2 (PS2) emulator. +Description: PCSX2 is a free and open-source PlayStation 2 (PS2) emulator. Its purpose is to emulate the PS2's hardware, using a combination of MIPS CPU Interpreters, Recompilers, and a Virtual Machine that manages hardware states and system memory. +Moniker: pcsx2 +Tags: +- cpp +- emulation +- emulator +- pcsx2 +- ps2 +ReleaseNotesUrl: https://pcsx2.net/blog/2025/pcsx2-2.4_2.2 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/PCSX2Team/PCSX2/2.4.0/PCSX2Team.PCSX2.yaml b/manifests/p/PCSX2Team/PCSX2/2.4.0/PCSX2Team.PCSX2.yaml new file mode 100644 index 0000000000000..ef6b691a2793a --- /dev/null +++ b/manifests/p/PCSX2Team/PCSX2/2.4.0/PCSX2Team.PCSX2.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: PCSX2Team.PCSX2 +PackageVersion: 2.4.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/PartexMarkingSystems/PromarkCreatorStable/4.4.616.0/PartexMarkingSystems.PromarkCreatorStable.installer.yaml b/manifests/p/PartexMarkingSystems/PromarkCreatorStable/4.4.616.0/PartexMarkingSystems.PromarkCreatorStable.installer.yaml new file mode 100644 index 0000000000000..54b0ae5a2a076 --- /dev/null +++ b/manifests/p/PartexMarkingSystems/PromarkCreatorStable/4.4.616.0/PartexMarkingSystems.PromarkCreatorStable.installer.yaml @@ -0,0 +1,14 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: PartexMarkingSystems.PromarkCreatorStable +PackageVersion: 4.4.616.0 +InstallerLocale: en-US +InstallerType: wix +ProductCode: '{E7DA95B5-9CF1-43AD-8C94-3FF6F80C479B}' +Installers: +- Architecture: neutral + InstallerUrl: https://promark.partex.pl/download/stable-v3/4.4.616/en-us/Promark_Creator_Setup.msi + InstallerSha256: 0E4B1E03D630FA58DCD3A9867D9834B95863B2F533A17D1A8A3C69FA7B77DE49 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/p/PartexMarkingSystems/PromarkCreatorStable/4.4.616.0/PartexMarkingSystems.PromarkCreatorStable.locale.en-US.yaml b/manifests/p/PartexMarkingSystems/PromarkCreatorStable/4.4.616.0/PartexMarkingSystems.PromarkCreatorStable.locale.en-US.yaml new file mode 100644 index 0000000000000..9325c191a3924 --- /dev/null +++ b/manifests/p/PartexMarkingSystems/PromarkCreatorStable/4.4.616.0/PartexMarkingSystems.PromarkCreatorStable.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: PartexMarkingSystems.PromarkCreatorStable +PackageVersion: 4.4.616.0 +PackageLocale: en-US +Publisher: Partex Marking Systems +PackageName: Promark Creator Stable +License: Commercial +ShortDescription: Promark Creator is an excellent tool for the design and production management of markers. It is an intuitive program that allows you to flawlessly select markers with the proper parameters. +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/p/PartexMarkingSystems/PromarkCreatorStable/4.4.616.0/PartexMarkingSystems.PromarkCreatorStable.yaml b/manifests/p/PartexMarkingSystems/PromarkCreatorStable/4.4.616.0/PartexMarkingSystems.PromarkCreatorStable.yaml new file mode 100644 index 0000000000000..46de09b0fcf57 --- /dev/null +++ b/manifests/p/PartexMarkingSystems/PromarkCreatorStable/4.4.616.0/PartexMarkingSystems.PromarkCreatorStable.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: PartexMarkingSystems.PromarkCreatorStable +PackageVersion: 4.4.616.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/p/Piriform/CCleaner/Slim/6.37.0.11523/Piriform.CCleaner.Slim.installer.yaml b/manifests/p/Piriform/CCleaner/Slim/6.37.0.11523/Piriform.CCleaner.Slim.installer.yaml new file mode 100644 index 0000000000000..940dfab07d1cc --- /dev/null +++ b/manifests/p/Piriform/CCleaner/Slim/6.37.0.11523/Piriform.CCleaner.Slim.installer.yaml @@ -0,0 +1,29 @@ +# Automatically updated by the winget bot at 2025/Jul/08 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Piriform.CCleaner.Slim +PackageVersion: '6.37.0.11523' +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Protocols: +- cclaunch +ProductCode: CCleaner +ReleaseDate: 2025-03-23 +ElevationRequirement: elevatesSelf +AppsAndFeaturesEntries: +- Publisher: Piriform + ProductCode: CCleaner +Installers: +- Architecture: x86 + InstallerUrl: https://bits.avcdn.net/productfamily_CCLEANER/insttype_SLIM/platform_WIN_PIR/installertype_ONLINE/build_RELEASE + InstallerSha256: BC07A919994EAF354FAC8CBB313028CDE0CF763D72A44018AFF61759BBBFD597 +- Architecture: x64 + InstallerUrl: https://bits.avcdn.net/productfamily_CCLEANER/insttype_SLIM/platform_WIN_PIR/installertype_ONLINE/build_RELEASE + InstallerSha256: BC07A919994EAF354FAC8CBB313028CDE0CF763D72A44018AFF61759BBBFD597 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Piriform/CCleaner/Slim/6.37.0.11523/Piriform.CCleaner.Slim.locale.en-US.yaml b/manifests/p/Piriform/CCleaner/Slim/6.37.0.11523/Piriform.CCleaner.Slim.locale.en-US.yaml new file mode 100644 index 0000000000000..cfaf27e069a21 --- /dev/null +++ b/manifests/p/Piriform/CCleaner/Slim/6.37.0.11523/Piriform.CCleaner.Slim.locale.en-US.yaml @@ -0,0 +1,56 @@ +# Automatically updated by the winget bot at 2025/Jul/08 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Piriform.CCleaner.Slim +PackageVersion: '6.37.0.11523' +PackageLocale: en-US +Publisher: Gen Digital Inc. +PublisherUrl: https://www.ccleaner.com/ +PublisherSupportUrl: https://support.ccleaner.com/ +PrivacyUrl: https://www.ccleaner.com/legal/general-privacy-policy +Author: Gen Digital Inc. +PackageName: CCleaner +PackageUrl: https://www.ccleaner.com/ccleaner/builds +License: Freeware +LicenseUrl: https://www.ccleaner.com/legal/end-user-license-agreement +Copyright: Copyright © 2005-2025 Gen Digital Inc. All rights reserved. +CopyrightUrl: https://www.ccleaner.com/about/terms-of-use +ShortDescription: > + CCleaner for PC helps you clean up your Windows computer, optimize performance, and maintain your online privacy. +Description: > + Inject instant speed into your machine by freezing resource-hogging apps and programs and by removing the unnecessary files taking up room on your hard drive. Clear out errors, broken settings, and update drivers to improve stability. Protect your privacy by securely erasing tracking cookies and history. +Moniker: ccleaner-slim +Tags: +- accelerate +- application +- apps +- clean +- cleaner +- cleanup +- optimize +- program +- software +- startup +- uninstall +ReleaseNotes: |- + Taking the hassle out of PC maintenance + + - We've updated the engines and libraries of Software Updater and Driver + Updater for better performance and stability. + - We've improved the cleaning of Microsoft 365. + - We've added cache cleaning for the WebDAV application on Windows 10 and 11. + + Fixing bugs and other improvements + + - We fixed a networking issue that was affecting some customers' ability to + register their licenses. + - We resolved an issue that was causing Health Check to freeze for users + running Windows 7 x86. + - The counter of outdated drivers on the Driver Updater icon now displays the + correct number of drivers in all cases without having to perform another + scan. + - We fixed a Software Updater issue that was preventing some users from + updating Microsoft Defender. +ReleaseNotesUrl: https://www.ccleaner.com/ccleaner/version-history +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Piriform/CCleaner/Slim/6.37.0.11523/Piriform.CCleaner.Slim.locale.zh-CN.yaml b/manifests/p/Piriform/CCleaner/Slim/6.37.0.11523/Piriform.CCleaner.Slim.locale.zh-CN.yaml new file mode 100644 index 0000000000000..fddeba2230e6a --- /dev/null +++ b/manifests/p/Piriform/CCleaner/Slim/6.37.0.11523/Piriform.CCleaner.Slim.locale.zh-CN.yaml @@ -0,0 +1,26 @@ +# Automatically updated by the winget bot at 2025/Jul/08 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Piriform.CCleaner.Slim +PackageVersion: '6.37.0.11523' +PackageLocale: zh-CN +PublisherUrl: https://www.ccleaner.com/zh-cn +PackageUrl: https://www.ccleaner.com/zh-cn/ccleaner +License: 免费软件 +ShortDescription: CCleaner for PC 帮您清理 Windows 计算机,优化性能并维护网络隐私。 +Description: |- + 冻结占用资源的应用和程序,删除占用硬盘空间的多余文件,为您的计算机注入活力。清除错误、损坏的设 + 置,并更新驱动程序以提高稳定性。通过安全擦除追踪 Cookie 和历史记录来保护您的隐私。 +Tags: +- 优化 +- 加速 +- 卸载 +- 启动 +- 垃圾 +- 应用 +- 清理 +- 程序 +- 自启 +- 软件 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Piriform/CCleaner/Slim/6.37.0.11523/Piriform.CCleaner.Slim.yaml b/manifests/p/Piriform/CCleaner/Slim/6.37.0.11523/Piriform.CCleaner.Slim.yaml new file mode 100644 index 0000000000000..d4e969e333aa7 --- /dev/null +++ b/manifests/p/Piriform/CCleaner/Slim/6.37.0.11523/Piriform.CCleaner.Slim.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jul/08 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Piriform.CCleaner.Slim +PackageVersion: '6.37.0.11523' +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Posit/Ark/0.1.196/Posit.Ark.installer.yaml b/manifests/p/Posit/Ark/0.1.196/Posit.Ark.installer.yaml new file mode 100644 index 0000000000000..a066363a4b553 --- /dev/null +++ b/manifests/p/Posit/Ark/0.1.196/Posit.Ark.installer.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Posit.Ark +PackageVersion: 0.1.196 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: ark.exe + PortableCommandAlias: ark +Commands: +- ark +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/posit-dev/ark/releases/download/0.1.196/ark-0.1.196-windows-x64.zip + InstallerSha256: 0FA4C843F3AA3D5AA3829B37EAFEAF9926BA90AA47D8B00C533B38C7EA7506BF +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Posit/Ark/0.1.196/Posit.Ark.locale.en-US.yaml b/manifests/p/Posit/Ark/0.1.196/Posit.Ark.locale.en-US.yaml new file mode 100644 index 0000000000000..f8fae418aa1b1 --- /dev/null +++ b/manifests/p/Posit/Ark/0.1.196/Posit.Ark.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.10.0.schema.json + +PackageIdentifier: Posit.Ark +PackageVersion: 0.1.196 +PackageLocale: en-US +Publisher: Posit Software, PBC +PublisherUrl: https://posit.co/ +PublisherSupportUrl: https://github.com/posit-dev/ark/issues +PrivacyUrl: https://posit.co/about/privacy-policy/ +Author: Posit Software, PBC +PackageName: Ark +PackageUrl: https://github.com/posit-dev/ark +License: MIT +LicenseUrl: https://github.com/posit-dev/ark/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Posit Software, PBC +CopyrightUrl: https://posit.co/about/trademark-guidelines/ +ShortDescription: Ark, an R kernel +Description: |- + Ark is an R kernel for Jupyter applications. It was created to serve as the interface between R and the Positron IDE and is compatible with all frontends implementing the Jupyter protocol. + Ark aims to provide a complete set of reusable and interoperable tools for implementing IDEs for R: + - It is a Jupyter kernel that provides structured interaction (inputs and outputs) between R and a frontend. + - It is an LSP server that powers intellisense features such as completions, jump-to-definition, find-references, diagnostics, etc. It also has some formatting capabilities that we plan to develop over time. + - It is a DAP server for sophisticated step-debugging of R functions. It manages source references, creating them on the spot if needed, and integrates tightly with the Jupyter kernel to step through R code transparently and inspect local variables. Note: Support for breakpoints is currently missing but you can use debug(), debugonce(), or browser() to drop into the debugger. + The LSP and DAP features are currently only available in Positron but will be made available to other frontends in the future. +Tags: +- jupyter +- r +ReleaseNotesUrl: https://github.com/posit-dev/ark/releases/tag/0.1.196 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Posit/Ark/0.1.196/Posit.Ark.locale.zh-CN.yaml b/manifests/p/Posit/Ark/0.1.196/Posit.Ark.locale.zh-CN.yaml new file mode 100644 index 0000000000000..33718cf11e140 --- /dev/null +++ b/manifests/p/Posit/Ark/0.1.196/Posit.Ark.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.10.0.schema.json + +PackageIdentifier: Posit.Ark +PackageVersion: 0.1.196 +PackageLocale: zh-CN +ShortDescription: Ark,一个 R 内核 +Description: |- + Ark 是用于 Jupyter 应用程序的 R 内核,作为 R 与 Positron IDE 之间的接口,并兼容所有执行 Jupyter 协议的前端。 + Ark 的目标是为 R 的 IDE 提供一整套可重用、可互操作的工具: + - 它是一个 Jupyter 内核,提供 R 和前端之间的结构化交互(输入和输出)。 + - 它是一个 LSP 服务器,助力补全、跳转到定义、查找引用、诊断等智能提示功能。它还具有一些格式化功能,我们计划逐步加以开发。 + - 它是一个 DAP 服务器,用于对 R 函数进行复杂的分步调试。它可以管理源代码引用,在需要时当场创建引用,并与 Jupyter 内核紧密集成,以透明的方式逐步调试 R 代码并检查局部变量。注意:目前还不支持断点,但你可以使用 debug()、debugonce() 或 browser() 进入调试器。 + LSP 和 DAP 功能目前只在 Positron 中可用,但将来会提供给其它前端。 +ReleaseNotesUrl: https://github.com/posit-dev/ark/releases/tag/0.1.196 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Posit/Ark/0.1.196/Posit.Ark.yaml b/manifests/p/Posit/Ark/0.1.196/Posit.Ark.yaml new file mode 100644 index 0000000000000..d073eab73fde9 --- /dev/null +++ b/manifests/p/Posit/Ark/0.1.196/Posit.Ark.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Posit.Ark +PackageVersion: 0.1.196 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.10.10/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.10.10/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..c65aafe4261e0 --- /dev/null +++ b/manifests/p/Python/Launcher/3.10.10/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.10.10 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.10.10150.0 + DisplayName: Python Launcher + ProductCode: '{41E422A9-9003-495A-84C4-FFD3DC55925E}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.10.10/win32/launcher.msi + InstallerSha256: 632DC9921953ADC44F817C46F1B8F91D32F76CC574451E6FD4AF7D9E790A9574 + ProductCode: '{41E422A9-9003-495A-84C4-FFD3DC55925E}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.10.10/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.10.10/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..871c6ebf08a57 --- /dev/null +++ b/manifests/p/Python/Launcher/3.10.10/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.10.10 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.10.10/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.10.10/Python.Launcher.yaml new file mode 100644 index 0000000000000..45470cc59c28f --- /dev/null +++ b/manifests/p/Python/Launcher/3.10.10/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.10.10 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.10.11/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.10.11/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..51e319e355c41 --- /dev/null +++ b/manifests/p/Python/Launcher/3.10.11/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.10.11 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.10.11150.0 + DisplayName: Python Launcher + ProductCode: '{905ADE3D-6468-4BB9-ABB8-CBC5F9ABF8EF}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.10.11/win32/launcher.msi + InstallerSha256: 2B9B7EB8940108D6B370EBE7783FAF93AA39CEE3D2FF909612D59DD074482C10 + ProductCode: '{905ADE3D-6468-4BB9-ABB8-CBC5F9ABF8EF}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.10.11/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.10.11/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..a402b3ad9cec3 --- /dev/null +++ b/manifests/p/Python/Launcher/3.10.11/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.10.11 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.10.11/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.10.11/Python.Launcher.yaml new file mode 100644 index 0000000000000..7ad42899e5d76 --- /dev/null +++ b/manifests/p/Python/Launcher/3.10.11/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.10.11 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.10.2/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.10.2/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..21b039148194f --- /dev/null +++ b/manifests/p/Python/Launcher/3.10.2/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.10.2 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.10.2150.0 + DisplayName: Python Launcher + ProductCode: '{0CD41B07-EDF9-4B77-8C7C-CCCA1C435970}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.10.2/win32/launcher.msi + InstallerSha256: C8462EEEF6ABD16D6F3EEC0FF40DD407E352C0C5E91DF2B2F9B6DEC991780461 + ProductCode: '{0CD41B07-EDF9-4B77-8C7C-CCCA1C435970}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.10.2/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.10.2/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..4b2922d60a0b9 --- /dev/null +++ b/manifests/p/Python/Launcher/3.10.2/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.10.2 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.10.2/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.10.2/Python.Launcher.yaml new file mode 100644 index 0000000000000..544aa572a9259 --- /dev/null +++ b/manifests/p/Python/Launcher/3.10.2/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.10.3/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.10.3/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..42d1b23283ae5 --- /dev/null +++ b/manifests/p/Python/Launcher/3.10.3/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.10.3 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.10.3150.0 + DisplayName: Python Launcher + ProductCode: '{90E2CFF3-9887-4445-8E43-FF6F323776A6}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.10.3/win32/launcher.msi + InstallerSha256: 9BA5C320DE3F8689CD8777C046486D02CF661B6FDC6F2DAA10DB938A9C208536 + ProductCode: '{90E2CFF3-9887-4445-8E43-FF6F323776A6}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.10.3/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.10.3/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..4cce69a84795d --- /dev/null +++ b/manifests/p/Python/Launcher/3.10.3/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.10.3 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.10.3/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.10.3/Python.Launcher.yaml new file mode 100644 index 0000000000000..d11897485b223 --- /dev/null +++ b/manifests/p/Python/Launcher/3.10.3/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.10.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.10.5/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.10.5/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..13fe84229b812 --- /dev/null +++ b/manifests/p/Python/Launcher/3.10.5/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.10.5 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.10.5150.0 + DisplayName: Python Launcher + ProductCode: '{25196DA8-29BD-4383-B7B5-B36C3BAF43F3}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.10.5/win32/launcher.msi + InstallerSha256: 940A81578B26C8EF226DE440C07ADAB33C50531094905AA2D84241B76C95180D + ProductCode: '{25196DA8-29BD-4383-B7B5-B36C3BAF43F3}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.10.5/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.10.5/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..9d0d4ec3c52b3 --- /dev/null +++ b/manifests/p/Python/Launcher/3.10.5/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.10.5 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.10.5/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.10.5/Python.Launcher.yaml new file mode 100644 index 0000000000000..d15ee64197b5a --- /dev/null +++ b/manifests/p/Python/Launcher/3.10.5/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.10.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.10.6/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.10.6/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..08c1e30d8e618 --- /dev/null +++ b/manifests/p/Python/Launcher/3.10.6/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.10.6 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.10.6150.0 + DisplayName: Python Launcher + ProductCode: '{7805B176-9059-45BD-8C4A-5B9EB0C2C387}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.10.6/win32/launcher.msi + InstallerSha256: 62F0ED976920A63F50FB36E0D96F7B6DC76408F3DB05054FF9A26E5E7676774B + ProductCode: '{7805B176-9059-45BD-8C4A-5B9EB0C2C387}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.10.6/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.10.6/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..d29449e8368b2 --- /dev/null +++ b/manifests/p/Python/Launcher/3.10.6/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.10.6 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.10.6/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.10.6/Python.Launcher.yaml new file mode 100644 index 0000000000000..4c9e466bef90d --- /dev/null +++ b/manifests/p/Python/Launcher/3.10.6/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.10.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.10.7/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.10.7/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..680fc2c9f6381 --- /dev/null +++ b/manifests/p/Python/Launcher/3.10.7/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.10.7 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.10.7150.0 + DisplayName: Python Launcher + ProductCode: '{96BFBDD2-78C9-42B5-9893-FABA2BB527C4}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.10.7/win32/launcher.msi + InstallerSha256: 2B697BD9E9A87318CB9F2ABD6BB77EB7BCC8C6D851DFB0C0A309CE774CF1C0FB + ProductCode: '{96BFBDD2-78C9-42B5-9893-FABA2BB527C4}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.10.7/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.10.7/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..e4d38efc17b27 --- /dev/null +++ b/manifests/p/Python/Launcher/3.10.7/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.10.7 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.10.7/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.10.7/Python.Launcher.yaml new file mode 100644 index 0000000000000..83c22aa272862 --- /dev/null +++ b/manifests/p/Python/Launcher/3.10.7/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.10.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.10.9/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.10.9/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..84b9c66b4097c --- /dev/null +++ b/manifests/p/Python/Launcher/3.10.9/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.10.9 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.10.9150.0 + DisplayName: Python Launcher + ProductCode: '{35A2AF4F-C504-4D2A-A025-F69379ECDF07}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.10.9/win32/launcher.msi + InstallerSha256: D557952FDEA4A50BD4901CF6152E17E46168FEDB663080AAF438DA80926921B7 + ProductCode: '{35A2AF4F-C504-4D2A-A025-F69379ECDF07}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.10.9/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.10.9/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..4df843a5a54b8 --- /dev/null +++ b/manifests/p/Python/Launcher/3.10.9/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.10.9 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.10.9/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.10.9/Python.Launcher.yaml new file mode 100644 index 0000000000000..180c6e441844e --- /dev/null +++ b/manifests/p/Python/Launcher/3.10.9/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.10.9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.11.0/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.11.0/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..b72c16da24544 --- /dev/null +++ b/manifests/p/Python/Launcher/3.11.0/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.11.0 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.11.150.0 + DisplayName: Python Launcher + ProductCode: '{0E6EEAC9-4913-4C2F-B7D2-761B27C35D7C}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.11.0/win32/launcher.msi + InstallerSha256: 4428512D8643C5C396434A43A53579946E6F6316C1C17FD175AFB62CCFC2959C + ProductCode: '{0E6EEAC9-4913-4C2F-B7D2-761B27C35D7C}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.11.0/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.11.0/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..dea29597bd376 --- /dev/null +++ b/manifests/p/Python/Launcher/3.11.0/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.11.0 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.11.0/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.11.0/Python.Launcher.yaml new file mode 100644 index 0000000000000..5a44c52c07ac4 --- /dev/null +++ b/manifests/p/Python/Launcher/3.11.0/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.11.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.11.1/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.11.1/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..d123205e459c4 --- /dev/null +++ b/manifests/p/Python/Launcher/3.11.1/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.11.1 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.11.1150.0 + DisplayName: Python Launcher + ProductCode: '{8A19B72D-62A8-4198-BEBD-CAEF117194C8}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.11.1/win32/launcher.msi + InstallerSha256: CF5DC227058A1FDD27F4E3007A2882FB0EBE923C4EA8E25BDBCE1FB7113B5EA7 + ProductCode: '{8A19B72D-62A8-4198-BEBD-CAEF117194C8}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.11.1/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.11.1/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..ccf62c85a3904 --- /dev/null +++ b/manifests/p/Python/Launcher/3.11.1/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.11.1 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.11.1/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.11.1/Python.Launcher.yaml new file mode 100644 index 0000000000000..4218bdafc3a21 --- /dev/null +++ b/manifests/p/Python/Launcher/3.11.1/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.11.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.11.2/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.11.2/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..7e3e6bc59caa3 --- /dev/null +++ b/manifests/p/Python/Launcher/3.11.2/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.11.2 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.11.2150.0 + DisplayName: Python Launcher + ProductCode: '{C28EE783-FA9C-4E09-910E-181A4A28C29C}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.11.2/win32/launcher.msi + InstallerSha256: 548D9F850EFA527613866B8ED045DB7A5B3442B69487210966BDCF26C8E22B37 + ProductCode: '{C28EE783-FA9C-4E09-910E-181A4A28C29C}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.11.2/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.11.2/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..12dadd1e0226d --- /dev/null +++ b/manifests/p/Python/Launcher/3.11.2/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.11.2 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.11.2/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.11.2/Python.Launcher.yaml new file mode 100644 index 0000000000000..e201601deba5d --- /dev/null +++ b/manifests/p/Python/Launcher/3.11.2/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.11.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.11.3/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.11.3/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..5fb5095967969 --- /dev/null +++ b/manifests/p/Python/Launcher/3.11.3/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.11.3 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.11.3150.0 + DisplayName: Python Launcher + ProductCode: '{C41DB702-D72D-40F4-A2B3-5BAC2DCA2DF2}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.11.3/win32/launcher.msi + InstallerSha256: F09344E2FE2B9A5D264F727E5F7F45F4891CE7E249C8C6344CE30D62D3708140 + ProductCode: '{C41DB702-D72D-40F4-A2B3-5BAC2DCA2DF2}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.11.3/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.11.3/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..a70929df6a224 --- /dev/null +++ b/manifests/p/Python/Launcher/3.11.3/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.11.3 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.11.3/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.11.3/Python.Launcher.yaml new file mode 100644 index 0000000000000..105d77c19f276 --- /dev/null +++ b/manifests/p/Python/Launcher/3.11.3/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.11.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.11.4/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.11.4/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..98f23fd70e8ea --- /dev/null +++ b/manifests/p/Python/Launcher/3.11.4/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.11.4 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.11.4150.0 + DisplayName: Python Launcher + ProductCode: '{23514291-DEF3-42FD-A67C-A96E35C92F24}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.11.4/win32/launcher.msi + InstallerSha256: 7A9E122F83F7FAA82A69008DA3E6AF034EC03EF75DDC8A503FD1493E0316CD33 + ProductCode: '{23514291-DEF3-42FD-A67C-A96E35C92F24}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.11.4/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.11.4/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..7f7071df8bf1b --- /dev/null +++ b/manifests/p/Python/Launcher/3.11.4/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.11.4 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.11.4/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.11.4/Python.Launcher.yaml new file mode 100644 index 0000000000000..1c05eb2d4a6de --- /dev/null +++ b/manifests/p/Python/Launcher/3.11.4/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.11.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.11.5/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.11.5/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..bacd09293cd3b --- /dev/null +++ b/manifests/p/Python/Launcher/3.11.5/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.11.5 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.11.5150.0 + DisplayName: Python Launcher + ProductCode: '{2FB71770-2C2E-42A3-9136-5101D1E930F4}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.11.5/win32/launcher.msi + InstallerSha256: 29157C56C3AEA29485447868FD03C41067D0BE47AE906586962BDD67C88C9996 + ProductCode: '{2FB71770-2C2E-42A3-9136-5101D1E930F4}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.11.5/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.11.5/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..b5a883e42e316 --- /dev/null +++ b/manifests/p/Python/Launcher/3.11.5/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.11.5 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.11.5/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.11.5/Python.Launcher.yaml new file mode 100644 index 0000000000000..919775337bd49 --- /dev/null +++ b/manifests/p/Python/Launcher/3.11.5/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.11.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.11.6/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.11.6/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..9e31f731f4840 --- /dev/null +++ b/manifests/p/Python/Launcher/3.11.6/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.11.6 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.11.6150.0 + DisplayName: Python Launcher + ProductCode: '{B1F7D579-C5B4-4859-9A53-BE40E5AAC4A7}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.11.6/win32/launcher.msi + InstallerSha256: 8519AD960C6BD26677F8C0C18479ED05C5816B9CD5D23D74AE0FDAEF84E501F4 + ProductCode: '{B1F7D579-C5B4-4859-9A53-BE40E5AAC4A7}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.11.6/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.11.6/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..2a58d9a83f798 --- /dev/null +++ b/manifests/p/Python/Launcher/3.11.6/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.11.6 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.11.6/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.11.6/Python.Launcher.yaml new file mode 100644 index 0000000000000..25801ffb994e4 --- /dev/null +++ b/manifests/p/Python/Launcher/3.11.6/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.11.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.11.7/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.11.7/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..b8bc5e9c7a310 --- /dev/null +++ b/manifests/p/Python/Launcher/3.11.7/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.11.7 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.11.7150.0 + DisplayName: Python Launcher + ProductCode: '{8C230F75-C203-4DD2-8212-EAEFF6E6C58D}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.11.7/win32/launcher.msi + InstallerSha256: CF4F4B7E8041266BC943B835F2058D290F7F5C4AD94C57CBC0991B4B044B3271 + ProductCode: '{8C230F75-C203-4DD2-8212-EAEFF6E6C58D}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.11.7/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.11.7/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..7e62f2dfdb924 --- /dev/null +++ b/manifests/p/Python/Launcher/3.11.7/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.11.7 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.11.7/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.11.7/Python.Launcher.yaml new file mode 100644 index 0000000000000..d78973f59a6e3 --- /dev/null +++ b/manifests/p/Python/Launcher/3.11.7/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.11.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.11.8/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.11.8/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..063fcf4c6603a --- /dev/null +++ b/manifests/p/Python/Launcher/3.11.8/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.11.8 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.11.8150.0 + DisplayName: Python Launcher + ProductCode: '{8DFCF17F-8C82-4E21-96F1-B1777F61A757}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.11.8/win32/launcher.msi + InstallerSha256: 6C193DEAE3F4BC5F5E05F557973C50CAC1414F1626749157FCC9DFC35325DC24 + ProductCode: '{8DFCF17F-8C82-4E21-96F1-B1777F61A757}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.11.8/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.11.8/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..b9b528a238436 --- /dev/null +++ b/manifests/p/Python/Launcher/3.11.8/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.11.8 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.11.8/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.11.8/Python.Launcher.yaml new file mode 100644 index 0000000000000..6ab7a47a2b719 --- /dev/null +++ b/manifests/p/Python/Launcher/3.11.8/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.11.8 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.11.9/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.11.9/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..8bd479665c63c --- /dev/null +++ b/manifests/p/Python/Launcher/3.11.9/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.11.9 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.11.9150.0 + DisplayName: Python Launcher + ProductCode: '{F3C5A650-8224-4CEC-B034-EF721E333796}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.11.9/win32/launcher.msi + InstallerSha256: 6433877824A8BED4EE01E9214AFAE6EE3FA445DFA6458BD46D538B49747CDE95 + ProductCode: '{F3C5A650-8224-4CEC-B034-EF721E333796}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.11.9/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.11.9/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..8df11a4f2cfc3 --- /dev/null +++ b/manifests/p/Python/Launcher/3.11.9/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.11.9 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.11.9/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.11.9/Python.Launcher.yaml new file mode 100644 index 0000000000000..57db6827c7c9c --- /dev/null +++ b/manifests/p/Python/Launcher/3.11.9/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.11.9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.5.0/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.5.0/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..ec1103b7a033e --- /dev/null +++ b/manifests/p/Python/Launcher/3.5.0/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.5.0 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.5.150.0 + DisplayName: Python Launcher + ProductCode: '{CAA5FC80-DEF6-4DFA-9C06-23921A87F092}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.5.0/win32/launcher.msi + InstallerSha256: 3F71CEC9DBD6935008CBBE8738C935D0BB1BEEB7C37BABC5C429A92CE46D5F62 + ProductCode: '{CAA5FC80-DEF6-4DFA-9C06-23921A87F092}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.5.0/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.5.0/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..57aca84c2632e --- /dev/null +++ b/manifests/p/Python/Launcher/3.5.0/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.5.0 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.5.0/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.5.0/Python.Launcher.yaml new file mode 100644 index 0000000000000..635fed570b61b --- /dev/null +++ b/manifests/p/Python/Launcher/3.5.0/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.5.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.5.1/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.5.1/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..c014a0cf4c5c6 --- /dev/null +++ b/manifests/p/Python/Launcher/3.5.1/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.5.1 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.5.1150.0 + DisplayName: Python Launcher + ProductCode: '{17778F7B-FB5A-4A93-9719-D75BAF673498}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.5.1/win32/launcher.msi + InstallerSha256: 0F479D4A6124EF2CFE65328C7E814226002EDACBA3347A38B3FD15523F338EEB + ProductCode: '{17778F7B-FB5A-4A93-9719-D75BAF673498}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.5.1/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.5.1/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..3236b68fc7513 --- /dev/null +++ b/manifests/p/Python/Launcher/3.5.1/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.5.1 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.5.1/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.5.1/Python.Launcher.yaml new file mode 100644 index 0000000000000..3e9a6b320cea8 --- /dev/null +++ b/manifests/p/Python/Launcher/3.5.1/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.5.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.5.2/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.5.2/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..f2f8b9a370e76 --- /dev/null +++ b/manifests/p/Python/Launcher/3.5.2/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.5.2 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.5.2150.0 + DisplayName: Python Launcher + ProductCode: '{963ECCDD-F09F-4C24-9367-8B5D748AA7C8}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.5.2/win32/launcher.msi + InstallerSha256: 59A84A582756FDB303B8411B8F83A95B2A5FCA62454258AE6A457E5EEE985BC3 + ProductCode: '{963ECCDD-F09F-4C24-9367-8B5D748AA7C8}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.5.2/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.5.2/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..a1b54427546b1 --- /dev/null +++ b/manifests/p/Python/Launcher/3.5.2/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.5.2 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.5.2/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.5.2/Python.Launcher.yaml new file mode 100644 index 0000000000000..91aa929e9b18a --- /dev/null +++ b/manifests/p/Python/Launcher/3.5.2/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.5.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.5.3/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.5.3/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..43fcd89d9fcd1 --- /dev/null +++ b/manifests/p/Python/Launcher/3.5.3/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.5.3 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.5.3150.0 + DisplayName: Python Launcher + ProductCode: '{7EA2D36F-925A-4C23-87E7-D6122E160EEC}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.5.3/win32/launcher.msi + InstallerSha256: BE3C2E83F9B46494763A5FD1B253E8BE4D997C9C3F977B352BF35AC33AD612E1 + ProductCode: '{7EA2D36F-925A-4C23-87E7-D6122E160EEC}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.5.3/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.5.3/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..2e666450ce08d --- /dev/null +++ b/manifests/p/Python/Launcher/3.5.3/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.5.3 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.5.3/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.5.3/Python.Launcher.yaml new file mode 100644 index 0000000000000..a2be572b6d885 --- /dev/null +++ b/manifests/p/Python/Launcher/3.5.3/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.5.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.5.4/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.5.4/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..44017b0dc78f8 --- /dev/null +++ b/manifests/p/Python/Launcher/3.5.4/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.5.4 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.5.4150.0 + DisplayName: Python Launcher + ProductCode: '{0CC63724-2076-4548-8958-554A8297E28F}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.5.4/win32/launcher.msi + InstallerSha256: 2A92F0071267DE06823A9D2A030DC475A637496DE953EEA4126F2B5921513C89 + ProductCode: '{0CC63724-2076-4548-8958-554A8297E28F}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.5.4/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.5.4/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..66b273a955b4a --- /dev/null +++ b/manifests/p/Python/Launcher/3.5.4/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.5.4 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.5.4/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.5.4/Python.Launcher.yaml new file mode 100644 index 0000000000000..da3b7a998a232 --- /dev/null +++ b/manifests/p/Python/Launcher/3.5.4/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.5.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.6.0/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.6.0/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..dc6caa1278852 --- /dev/null +++ b/manifests/p/Python/Launcher/3.6.0/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.6.0 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.6.150.0 + DisplayName: Python Launcher + ProductCode: '{A674B2CB-13CA-437B-A215-9DD257959A49}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.6.0/win32/launcher.msi + InstallerSha256: DB23A9FD59EED14550291F380BF60502F5143D832FF2926FC2BB082331FD2D1F + ProductCode: '{A674B2CB-13CA-437B-A215-9DD257959A49}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.6.0/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.6.0/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..bbfb184b7397e --- /dev/null +++ b/manifests/p/Python/Launcher/3.6.0/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.6.0 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.6.0/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.6.0/Python.Launcher.yaml new file mode 100644 index 0000000000000..07cfe1738f0ac --- /dev/null +++ b/manifests/p/Python/Launcher/3.6.0/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.6.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.6.1/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.6.1/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..dd6954f79af1a --- /dev/null +++ b/manifests/p/Python/Launcher/3.6.1/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.6.1 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.6.1150.0 + DisplayName: Python Launcher + ProductCode: '{323AC113-C6CE-4F99-842F-4936332D055A}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.6.1/win32/launcher.msi + InstallerSha256: A129F6EEC7BD2DAC3B945C366C9F7AA95453AF591949005C003C6776372DAA41 + ProductCode: '{323AC113-C6CE-4F99-842F-4936332D055A}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.6.1/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.6.1/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..5069e907395ea --- /dev/null +++ b/manifests/p/Python/Launcher/3.6.1/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.6.1 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.6.1/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.6.1/Python.Launcher.yaml new file mode 100644 index 0000000000000..462ede2f9a66c --- /dev/null +++ b/manifests/p/Python/Launcher/3.6.1/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.6.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.6.5/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.6.5/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..1068a6709aaf9 --- /dev/null +++ b/manifests/p/Python/Launcher/3.6.5/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.6.5 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.6.5150.0 + DisplayName: Python Launcher + ProductCode: '{8A66FEC2-E443-4219-B9AC-F9B10607B57C}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.6.5/win32/launcher.msi + InstallerSha256: 52BC68D51611D945049DA5ECE4E12195E88736FDA54E740EB6B83FD669E784A2 + ProductCode: '{8A66FEC2-E443-4219-B9AC-F9B10607B57C}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.6.5/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.6.5/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..4485643c3ceb0 --- /dev/null +++ b/manifests/p/Python/Launcher/3.6.5/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.6.5 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.6.5/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.6.5/Python.Launcher.yaml new file mode 100644 index 0000000000000..491acce0a9c3f --- /dev/null +++ b/manifests/p/Python/Launcher/3.6.5/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.6.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.7.1/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.7.1/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..2e02f0ef6caa9 --- /dev/null +++ b/manifests/p/Python/Launcher/3.7.1/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.7.1 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.7.1150.0 + DisplayName: Python Launcher + ProductCode: '{C3A1C6B1-9096-47A7-AB5C-09114002A996}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.7.1/win32/launcher.msi + InstallerSha256: CD62C306578DBC09707E01C46C25D695AC904113150EC7582E09C51CA06D1124 + ProductCode: '{C3A1C6B1-9096-47A7-AB5C-09114002A996}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.7.1/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.7.1/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..ed00452103d15 --- /dev/null +++ b/manifests/p/Python/Launcher/3.7.1/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.7.1 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.7.1/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.7.1/Python.Launcher.yaml new file mode 100644 index 0000000000000..ff48d2bbb5ed6 --- /dev/null +++ b/manifests/p/Python/Launcher/3.7.1/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.7.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.7.2/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.7.2/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..61d1ff1239fc6 --- /dev/null +++ b/manifests/p/Python/Launcher/3.7.2/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.7.2 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.7.2150.0 + DisplayName: Python Launcher + ProductCode: '{FA2A3867-8965-4CF7-83E2-C8960652F5AD}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.7.2/win32/launcher.msi + InstallerSha256: 4464B066DDB1A587AEC2A761A4D42B5A61A7F156E2C3411B770565F1A8149334 + ProductCode: '{FA2A3867-8965-4CF7-83E2-C8960652F5AD}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.7.2/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.7.2/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..74386fab0ac5f --- /dev/null +++ b/manifests/p/Python/Launcher/3.7.2/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.7.2 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.7.2/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.7.2/Python.Launcher.yaml new file mode 100644 index 0000000000000..ee5d76f0f998f --- /dev/null +++ b/manifests/p/Python/Launcher/3.7.2/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.7.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.7.3/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.7.3/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..0550a74942f81 --- /dev/null +++ b/manifests/p/Python/Launcher/3.7.3/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.7.3 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.7.3150.0 + DisplayName: Python Launcher + ProductCode: '{A28C27E4-A725-482A-9C65-61EDC0E4D583}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.7.3/win32/launcher.msi + InstallerSha256: 3974C208BC32A1B0CB4D9B9A2B927A4A3474790FC6E7D7B33C5989740B1E0F91 + ProductCode: '{A28C27E4-A725-482A-9C65-61EDC0E4D583}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.7.3/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.7.3/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..151b5b13dfbd6 --- /dev/null +++ b/manifests/p/Python/Launcher/3.7.3/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.7.3 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.7.3/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.7.3/Python.Launcher.yaml new file mode 100644 index 0000000000000..a429f39648274 --- /dev/null +++ b/manifests/p/Python/Launcher/3.7.3/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.7.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.7.4/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.7.4/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..79a282c1b8a58 --- /dev/null +++ b/manifests/p/Python/Launcher/3.7.4/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.7.4 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.7.4150.0 + DisplayName: Python Launcher + ProductCode: '{D722DA3A-92F5-454A-BD5D-A48C94D82300}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.7.4/win32/launcher.msi + InstallerSha256: 42A4C1BF5A629BDE038A76C9113A8D71C11B1568F9DA4F89DE241025E80C5843 + ProductCode: '{D722DA3A-92F5-454A-BD5D-A48C94D82300}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.7.4/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.7.4/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..235b6aa2a8ba1 --- /dev/null +++ b/manifests/p/Python/Launcher/3.7.4/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.7.4 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.7.4/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.7.4/Python.Launcher.yaml new file mode 100644 index 0000000000000..e2dc47a3c870e --- /dev/null +++ b/manifests/p/Python/Launcher/3.7.4/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.7.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.7.5/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.7.5/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..bfc69dec5d394 --- /dev/null +++ b/manifests/p/Python/Launcher/3.7.5/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.7.5 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.7.5150.0 + DisplayName: Python Launcher + ProductCode: '{4E5F47AD-2588-4BE3-9DC2-0F9CD283A3DF}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.7.5/win32/launcher.msi + InstallerSha256: 85607E2B0C7A1CF07A3C3B311EC0559CB788F285126C73BFDE54D8E2FEBC1BAC + ProductCode: '{4E5F47AD-2588-4BE3-9DC2-0F9CD283A3DF}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.7.5/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.7.5/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..d97c7c6024684 --- /dev/null +++ b/manifests/p/Python/Launcher/3.7.5/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.7.5 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.7.5/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.7.5/Python.Launcher.yaml new file mode 100644 index 0000000000000..55559ca9b661d --- /dev/null +++ b/manifests/p/Python/Launcher/3.7.5/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.7.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.7.8/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.7.8/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..75711937f4db1 --- /dev/null +++ b/manifests/p/Python/Launcher/3.7.8/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.7.8 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.7.8150.0 + DisplayName: Python Launcher + ProductCode: '{B25A5062-540A-4141-80D3-50FA598523F3}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.7.8/win32/launcher.msi + InstallerSha256: 91B9D6DC1284E791A7DEE320D6EC12F48DF20918B9ACC61046F81A575973C9A6 + ProductCode: '{B25A5062-540A-4141-80D3-50FA598523F3}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.7.8/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.7.8/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..6a61e85f191e6 --- /dev/null +++ b/manifests/p/Python/Launcher/3.7.8/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.7.8 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.7.8/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.7.8/Python.Launcher.yaml new file mode 100644 index 0000000000000..8c782899ca997 --- /dev/null +++ b/manifests/p/Python/Launcher/3.7.8/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.7.8 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.7.9/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.7.9/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..b1530ab5f5c82 --- /dev/null +++ b/manifests/p/Python/Launcher/3.7.9/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.7.9 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.7.9150.0 + DisplayName: Python Launcher + ProductCode: '{D9EDA177-2AA5-4AF1-A1E3-38B455C60E4D}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.7.9/win32/launcher.msi + InstallerSha256: 3A1C43E7A04207175DA0C96C46C275D00DB2FD7F5E5870A9368DD826C683CD03 + ProductCode: '{D9EDA177-2AA5-4AF1-A1E3-38B455C60E4D}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.7.9/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.7.9/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..02f49de8397fd --- /dev/null +++ b/manifests/p/Python/Launcher/3.7.9/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.7.9 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.7.9/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.7.9/Python.Launcher.yaml new file mode 100644 index 0000000000000..6f2ceaad09e0b --- /dev/null +++ b/manifests/p/Python/Launcher/3.7.9/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.7.9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.8.0/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.8.0/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..34baf5e3993f0 --- /dev/null +++ b/manifests/p/Python/Launcher/3.8.0/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.8.0 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.8.150.0 + DisplayName: Python Launcher + ProductCode: '{7DBA9B7D-924F-4CE8-8AE8-65977EF62744}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.8.0/win32/launcher.msi + InstallerSha256: 4C89B5329A597DBED0B7B6F784A2A016033C8F5AD35690CD897722CDAA7B7197 + ProductCode: '{7DBA9B7D-924F-4CE8-8AE8-65977EF62744}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.8.0/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.8.0/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..036087c0bbaba --- /dev/null +++ b/manifests/p/Python/Launcher/3.8.0/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.8.0 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.8.0/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.8.0/Python.Launcher.yaml new file mode 100644 index 0000000000000..3d508e57ed1c0 --- /dev/null +++ b/manifests/p/Python/Launcher/3.8.0/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.8.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.8.1/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.8.1/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..96372ca68a80b --- /dev/null +++ b/manifests/p/Python/Launcher/3.8.1/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.8.1 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.8.1150.0 + DisplayName: Python Launcher + ProductCode: '{41A9BB87-60B8-47C3-BB79-6EC186827EC7}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.8.1/win32/launcher.msi + InstallerSha256: 84F7C934D561CE384374ACAAEF10F054014B13A9EBDA19EC6349B2B026135FE1 + ProductCode: '{41A9BB87-60B8-47C3-BB79-6EC186827EC7}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.8.1/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.8.1/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..05ac7d764376a --- /dev/null +++ b/manifests/p/Python/Launcher/3.8.1/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.8.1 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.8.1/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.8.1/Python.Launcher.yaml new file mode 100644 index 0000000000000..902328cd710cd --- /dev/null +++ b/manifests/p/Python/Launcher/3.8.1/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.8.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.8.10/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.8.10/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..5dc819201ce43 --- /dev/null +++ b/manifests/p/Python/Launcher/3.8.10/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.8.10 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.8.10150.0 + DisplayName: Python Launcher + ProductCode: '{81CDF5BF-4777-4CF8-B6CC-0902061F7314}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.8.10/win32/launcher.msi + InstallerSha256: 351538F84D00D5D4D6B154867D6EDED362B62CD49C391AB8DDE1328DEE5FA0DA + ProductCode: '{81CDF5BF-4777-4CF8-B6CC-0902061F7314}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.8.10/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.8.10/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..44460eac6e0f5 --- /dev/null +++ b/manifests/p/Python/Launcher/3.8.10/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.8.10 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.8.10/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.8.10/Python.Launcher.yaml new file mode 100644 index 0000000000000..ca323ae9bc5e1 --- /dev/null +++ b/manifests/p/Python/Launcher/3.8.10/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.8.10 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.8.4/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.8.4/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..3416462cd8c49 --- /dev/null +++ b/manifests/p/Python/Launcher/3.8.4/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.8.4 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.8.4150.0 + DisplayName: Python Launcher + ProductCode: '{8310C47D-C846-4476-A079-1FDD7B5B0503}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.8.4/win32/launcher.msi + InstallerSha256: 3AAD38A03EC34DF7770CD754E8663864A66AFDE2B1254290C871C6467EA1E237 + ProductCode: '{8310C47D-C846-4476-A079-1FDD7B5B0503}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.8.4/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.8.4/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..403aa8cf41684 --- /dev/null +++ b/manifests/p/Python/Launcher/3.8.4/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.8.4 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.8.4/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.8.4/Python.Launcher.yaml new file mode 100644 index 0000000000000..0912b6dd51dc6 --- /dev/null +++ b/manifests/p/Python/Launcher/3.8.4/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.8.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.8.6/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.8.6/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..736ec274c2a80 --- /dev/null +++ b/manifests/p/Python/Launcher/3.8.6/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.8.6 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.8.6150.0 + DisplayName: Python Launcher + ProductCode: '{3B82A91D-DB48-4160-94D2-0B8C6D2B1710}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.8.6/win32/launcher.msi + InstallerSha256: 06DBF2308B3B07C0710874C15C7E3015894988F59E6D40FF1F889920FA0D6B8A + ProductCode: '{3B82A91D-DB48-4160-94D2-0B8C6D2B1710}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.8.6/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.8.6/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..b5fb96b4b98c7 --- /dev/null +++ b/manifests/p/Python/Launcher/3.8.6/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.8.6 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.8.6/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.8.6/Python.Launcher.yaml new file mode 100644 index 0000000000000..c30453ad1a9aa --- /dev/null +++ b/manifests/p/Python/Launcher/3.8.6/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.8.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.8.7/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.8.7/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..ed74ee5a8e213 --- /dev/null +++ b/manifests/p/Python/Launcher/3.8.7/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.8.7 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.8.7150.0 + DisplayName: Python Launcher + ProductCode: '{978F3F47-FE6A-4CA8-B412-2A48C0DB05AE}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.8.7/win32/launcher.msi + InstallerSha256: 8E62D2EAE3359B325A76D4C295463491C06F4AE37C84FA84A93956F58D74D1E2 + ProductCode: '{978F3F47-FE6A-4CA8-B412-2A48C0DB05AE}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.8.7/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.8.7/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..028d4aa75b50c --- /dev/null +++ b/manifests/p/Python/Launcher/3.8.7/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.8.7 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.8.7/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.8.7/Python.Launcher.yaml new file mode 100644 index 0000000000000..cef827201b772 --- /dev/null +++ b/manifests/p/Python/Launcher/3.8.7/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.8.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.8.8/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.8.8/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..e757c8bfc1a39 --- /dev/null +++ b/manifests/p/Python/Launcher/3.8.8/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.8.8 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.8.8150.0 + DisplayName: Python Launcher + ProductCode: '{3B53E5B7-CFC4-401C-80E9-FF7591C58741}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.8.8/win32/launcher.msi + InstallerSha256: 046E0474A2FCB3EDB1C816DC7E65D81BA9A013351C460511C9F4EE5AA043481F + ProductCode: '{3B53E5B7-CFC4-401C-80E9-FF7591C58741}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.8.8/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.8.8/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..9a1e44fd0b32e --- /dev/null +++ b/manifests/p/Python/Launcher/3.8.8/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.8.8 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.8.8/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.8.8/Python.Launcher.yaml new file mode 100644 index 0000000000000..9a7cc36a7934a --- /dev/null +++ b/manifests/p/Python/Launcher/3.8.8/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.8.8 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.8.9/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.8.9/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..67444472d3efe --- /dev/null +++ b/manifests/p/Python/Launcher/3.8.9/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.8.9 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.8.9150.0 + DisplayName: Python Launcher + ProductCode: '{817E6E81-6E97-4BE3-A8C4-CC224B151FA8}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.8.9/win32/launcher.msi + InstallerSha256: FB266274ADC7F564A4C10505C702756D5BF549FDD025A2058DEA6F23D3F50427 + ProductCode: '{817E6E81-6E97-4BE3-A8C4-CC224B151FA8}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.8.9/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.8.9/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..218311be68fa0 --- /dev/null +++ b/manifests/p/Python/Launcher/3.8.9/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.8.9 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.8.9/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.8.9/Python.Launcher.yaml new file mode 100644 index 0000000000000..b9985b7294df9 --- /dev/null +++ b/manifests/p/Python/Launcher/3.8.9/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.8.9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.9.10/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.9.10/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..5deb9b11dfbd6 --- /dev/null +++ b/manifests/p/Python/Launcher/3.9.10/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.9.10 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.9.10150.0 + DisplayName: Python Launcher + ProductCode: '{0F246F5F-0282-4320-B735-7A5FDE7EA7D6}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.9.10/win32/launcher.msi + InstallerSha256: C0DBA6DFF7BD4F1A7633BA46C86FCE40E7F723DF23F8BB8B46F14152CE6BBB97 + ProductCode: '{0F246F5F-0282-4320-B735-7A5FDE7EA7D6}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.9.10/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.9.10/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..3b1030bd0fea1 --- /dev/null +++ b/manifests/p/Python/Launcher/3.9.10/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.9.10 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.9.10/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.9.10/Python.Launcher.yaml new file mode 100644 index 0000000000000..5c8e3a7078c7b --- /dev/null +++ b/manifests/p/Python/Launcher/3.9.10/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.9.10 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.9.12/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.9.12/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..2c04c87b2d8f2 --- /dev/null +++ b/manifests/p/Python/Launcher/3.9.12/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.9.12 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.9.12150.0 + DisplayName: Python Launcher + ProductCode: '{A17728A3-68B8-42C8-8CEA-8B4DE5AA33BA}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.9.12/win32/launcher.msi + InstallerSha256: 2DA95CC7D8546C42F6AD39A2C486F4253F86C5B7B1A5D0D64C34FECE8488EE73 + ProductCode: '{A17728A3-68B8-42C8-8CEA-8B4DE5AA33BA}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.9.12/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.9.12/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..9e5b9b7b1abbe --- /dev/null +++ b/manifests/p/Python/Launcher/3.9.12/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.9.12 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.9.12/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.9.12/Python.Launcher.yaml new file mode 100644 index 0000000000000..97b1c1343cdbf --- /dev/null +++ b/manifests/p/Python/Launcher/3.9.12/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.9.12 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.9.13/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.9.13/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..e8d25396c6ca8 --- /dev/null +++ b/manifests/p/Python/Launcher/3.9.13/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.9.13 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.9.13150.0 + DisplayName: Python Launcher + ProductCode: '{1A8286E4-2F70-4165-B2BF-CC6B49664005}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.9.13/win32/launcher.msi + InstallerSha256: DEACE03DB12F7D23FEC7311C38654463D52F7AF66CF23A1756F26EAB458A8054 + ProductCode: '{1A8286E4-2F70-4165-B2BF-CC6B49664005}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.9.13/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.9.13/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..a528468d7e427 --- /dev/null +++ b/manifests/p/Python/Launcher/3.9.13/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.9.13 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.9.13/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.9.13/Python.Launcher.yaml new file mode 100644 index 0000000000000..87de629f82159 --- /dev/null +++ b/manifests/p/Python/Launcher/3.9.13/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.9.13 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.9.2/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.9.2/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..74c890549abe1 --- /dev/null +++ b/manifests/p/Python/Launcher/3.9.2/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.9.2 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.9.2150.0 + DisplayName: Python Launcher + ProductCode: '{7F28EEFD-F6EF-4237-8FE5-FA055B2E1028}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.9.2/win32/launcher.msi + InstallerSha256: 5FEEF17693359F89B4C71502A02A8A2794D1EC9DABB4B5C131AD4A4038E9A219 + ProductCode: '{7F28EEFD-F6EF-4237-8FE5-FA055B2E1028}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.9.2/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.9.2/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..93d2dcce61c2d --- /dev/null +++ b/manifests/p/Python/Launcher/3.9.2/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.9.2 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.9.2/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.9.2/Python.Launcher.yaml new file mode 100644 index 0000000000000..b04251e1dc3e8 --- /dev/null +++ b/manifests/p/Python/Launcher/3.9.2/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.9.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.9.3/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.9.3/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..c68513fd4112b --- /dev/null +++ b/manifests/p/Python/Launcher/3.9.3/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.9.3 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.9.3150.0 + DisplayName: Python Launcher + ProductCode: '{21095538-AA2E-4DB4-A90B-3EDAA30A1619}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.9.3/win32/launcher.msi + InstallerSha256: 925B1819122307E2AC3344D5B32E8A5A3EF798D198FE51BF8DF7673C851E1D25 + ProductCode: '{21095538-AA2E-4DB4-A90B-3EDAA30A1619}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.9.3/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.9.3/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..24465dcbac43f --- /dev/null +++ b/manifests/p/Python/Launcher/3.9.3/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.9.3 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.9.3/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.9.3/Python.Launcher.yaml new file mode 100644 index 0000000000000..691fdb0910d9b --- /dev/null +++ b/manifests/p/Python/Launcher/3.9.3/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.9.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.9.4/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.9.4/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..32a326f40e700 --- /dev/null +++ b/manifests/p/Python/Launcher/3.9.4/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.9.4 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.9.4150.0 + DisplayName: Python Launcher + ProductCode: '{BDD80906-41E0-43DB-8C65-D8BCCEB3A3F8}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.9.4/win32/launcher.msi + InstallerSha256: BC626980EBFE1987B86190C1FA73ED3A4730D9BB0813722DEA42E394BFEFC583 + ProductCode: '{BDD80906-41E0-43DB-8C65-D8BCCEB3A3F8}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.9.4/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.9.4/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..59d3a8d556f3a --- /dev/null +++ b/manifests/p/Python/Launcher/3.9.4/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.9.4 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.9.4/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.9.4/Python.Launcher.yaml new file mode 100644 index 0000000000000..715525d3d7115 --- /dev/null +++ b/manifests/p/Python/Launcher/3.9.4/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.9.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.9.7/Python.Launcher.installer.yaml b/manifests/p/Python/Launcher/3.9.7/Python.Launcher.installer.yaml new file mode 100644 index 0000000000000..981332fffbd35 --- /dev/null +++ b/manifests/p/Python/Launcher/3.9.7/Python.Launcher.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.9.7 +InstallerType: wix +UpgradeBehavior: install +Commands: +- py +- python +- pythonw +- pyw +FileExtensions: +- py +- pyc +- pyd +- pyo +- pyw +- pyz +- pyzw +AppsAndFeaturesEntries: +- DisplayVersion: 3.9.7150.0 + DisplayName: Python Launcher + ProductCode: '{99719382-D7A9-4DC2-BF0C-C23B730A313D}' +InstallationMetadata: + DefaultInstallLocation: . +Installers: +- Architecture: x86 + InstallerUrl: https://www.python.org/ftp/python/3.9.7/win32/launcher.msi + InstallerSha256: E79A69C6926F6816D4DA24E876C5DE209B83C848C7F408E0B876FF2A69091E02 + ProductCode: '{99719382-D7A9-4DC2-BF0C-C23B730A313D}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.9.7/Python.Launcher.locale.en-US.yaml b/manifests/p/Python/Launcher/3.9.7/Python.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..e000001e6fbc3 --- /dev/null +++ b/manifests/p/Python/Launcher/3.9.7/Python.Launcher.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.9.7 +PackageLocale: en-US +Publisher: Python Software Foundation +PublisherUrl: https://www.python.org/ +PublisherSupportUrl: https://www.python.org/about/help/ +PrivacyUrl: https://www.python.org/privacy/ +Author: Python Software Foundation +PackageName: Python Launcher +PackageUrl: https://www.python.org/ +License: PSF-2.0 +LicenseUrl: https://docs.python.org/3/license.html +Copyright: Copyright (c) 2001-2023 Python Software Foundation. All Rights Reserved. +CopyrightUrl: https://www.python.org/about/legal/ +ShortDescription: The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. +Description: |- + The Python launcher for Windows is a utility which aids in locating and executing of different Python versions. + It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version. + + Unlike the PATH variable, the launcher will correctly select the most appropriate version of Python. + It will prefer per-user installations over system-wide ones, and orders by language version rather than using the most recently installed version. + + The launcher was originally specified in PEP 397. +Moniker: python-launcher +Tags: +- language +- programming +- programming-language +- python +- python3 +- script +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Python Launcher for Windows + DocumentUrl: https://docs.python.org/3/using/windows.html#launcher +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Python/Launcher/3.9.7/Python.Launcher.yaml b/manifests/p/Python/Launcher/3.9.7/Python.Launcher.yaml new file mode 100644 index 0000000000000..8ad22c6c57c19 --- /dev/null +++ b/manifests/p/Python/Launcher/3.9.7/Python.Launcher.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Python.Launcher +PackageVersion: 3.9.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/q/QNAP/QVRProClient/2.7.1.1173/QNAP.QVRProClient.installer.yaml b/manifests/q/QNAP/QVRProClient/2.7.1.1173/QNAP.QVRProClient.installer.yaml new file mode 100644 index 0000000000000..65e13bace8095 --- /dev/null +++ b/manifests/q/QNAP/QVRProClient/2.7.1.1173/QNAP.QVRProClient.installer.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=QUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: QNAP.QVRProClient +PackageVersion: 2.7.1.1173 +InstallerType: nullsoft +Scope: machine +ReleaseDate: 2025-03-26 +Installers: +- Architecture: x86 + InstallerUrl: https://download.qnap.com/Storage/Utility/QVRProClientWinX86-2.7.1.1173.exe + InstallerSha256: 0CB0962F55A4E53924D65E7F672CCA38069E2F60BA383A06FD86FF617FB21358 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 + ProductCode: QNAPQVR Pro ClientX86 +- Architecture: x64 + InstallerUrl: https://download.qnap.com/Storage/Utility/QVRProClientWinX64-2.7.1.1173.exe + InstallerSha256: 3A85FE1D081CFC120B698339FD96AD0014049C291D1F951F54EBCE9FC0DA6074 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 + ProductCode: QNAPQVR Pro ClientX64 +- InstallerLocale: zh-CN + Architecture: x86 + InstallerUrl: https://download.qnap.com.cn/Storage/Utility/QVRProClientWinX86-2.7.1.1173.exe + InstallerSha256: 0CB0962F55A4E53924D65E7F672CCA38069E2F60BA383A06FD86FF617FB21358 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 + ProductCode: QNAPQVR Pro ClientX86 +- InstallerLocale: zh-CN + Architecture: x64 + InstallerUrl: https://download.qnap.com.cn/Storage/Utility/QVRProClientWinX64-2.7.1.1173.exe + InstallerSha256: 3A85FE1D081CFC120B698339FD96AD0014049C291D1F951F54EBCE9FC0DA6074 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 + ProductCode: QNAPQVR Pro ClientX64 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/q/QNAP/QVRProClient/2.7.1.1173/QNAP.QVRProClient.locale.en-US.yaml b/manifests/q/QNAP/QVRProClient/2.7.1.1173/QNAP.QVRProClient.locale.en-US.yaml new file mode 100644 index 0000000000000..04760b683d54b --- /dev/null +++ b/manifests/q/QNAP/QVRProClient/2.7.1.1173/QNAP.QVRProClient.locale.en-US.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=QUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: QNAP.QVRProClient +PackageVersion: 2.7.1.1173 +PackageLocale: en-US +Publisher: QNAP Systems, Inc. +PublisherUrl: https://www.qnap.com/ +PublisherSupportUrl: https://service.qnap.com/ +PrivacyUrl: https://www.qnap.com/en/legal/qnap-privacy-policy +Author: QNAP Systems, Inc. +PackageName: QNAP QVR Pro Client +PackageUrl: https://www.qnap.com/en/utilities/surveillance +License: Proprietary +LicenseUrl: https://www.qnap.com/en/legal/qnap-website-terms-of-use +Copyright: © 2025 QNAP Systems, Inc. All rights reserved. +CopyrightUrl: https://www.qnap.com/en/legal/qnap-website-terms-of-use +ShortDescription: A new client application for QNAP surveillance system, supporting QVR Pro, QVR Elite and QVP series surveillance appliances. +Description: QVR Pro Client is a new client application for QNAP surveillance system, supporting QVR Pro, QVR Elite and QVP series surveillance appliances. You can browse multiple channels at once, enjoying efficient and easy management of surveillance recordings. +# Moniker: +Tags: +- camera +- nas +- nvr +- storage +- surveillance +ReleaseNotes: |- + [Important Notes] + - QVR Pro Client installation package is not included in QVR Pro. To install QVR Pro Client, download the latest installation package from the QNAP website: https://www.qnap.com/go/utilities/surveillance + [New Features] + - QVR Pro Client now supports Multi-Server Mode, which allows you to inspect cameras of different servers at the same time and save cross-server views and e-maps to your local storage. + - You can now open multiple Live/Playback tabs while logged in to QVR Center. + - Third-party events now support Event View. + [Fixed Issues] + - Fixed an issue where the fisheye camera dewarp is upside down. + - Fixed an issue where the Third-party event cannot be played back. +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/q/QNAP/QVRProClient/2.7.1.1173/QNAP.QVRProClient.locale.zh-CN.yaml b/manifests/q/QNAP/QVRProClient/2.7.1.1173/QNAP.QVRProClient.locale.zh-CN.yaml new file mode 100644 index 0000000000000..cfa04d78e9f0c --- /dev/null +++ b/manifests/q/QNAP/QVRProClient/2.7.1.1173/QNAP.QVRProClient.locale.zh-CN.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=QUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: QNAP.QVRProClient +PackageVersion: 2.7.1.1173 +PackageLocale: zh-CN +# Publisher: +PublisherUrl: https://www.qnap.com.cn/zh-cn +PublisherSupportUrl: https://service.qnap.com.cn/ +PrivacyUrl: https://www.qnap.com.cn/zh-cn/legal/qnap-privacy-policy +# Author: +# PackageName: +PackageUrl: https://www.qnap.com.cn/zh-cn/utilities/surveillance +License: 专有软件 +LicenseUrl: https://www.qnap.com.cn/zh-cn/legal/qnap-website-terms-of-use +# Copyright: +CopyrightUrl: https://www.qnap.com.cn/zh-cn/legal/qnap-website-terms-of-use +ShortDescription: QNAP 监控系统的全新客户端应用程序,支持 QVR Pro、QVR Elite 和 QVP 系列监控设备 +Description: QVR Pro Client 是 QNAP 监控系统的全新客户端应用程序,支持 QVR Pro、QVR Elite 和 QVP 系列监控设备。您可在屏幕上同时浏览多个频道,轻松高效地管理监控录像文件。 +# Moniker: +Tags: +- nas +- nvr +- 存储 +- 摄像头 +- 监控 +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/q/QNAP/QVRProClient/2.7.1.1173/QNAP.QVRProClient.yaml b/manifests/q/QNAP/QVRProClient/2.7.1.1173/QNAP.QVRProClient.yaml new file mode 100644 index 0000000000000..1a0a71090880e --- /dev/null +++ b/manifests/q/QNAP/QVRProClient/2.7.1.1173/QNAP.QVRProClient.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=QUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: QNAP.QVRProClient +PackageVersion: 2.7.1.1173 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/q/QuestPackageManager/QuestPackageManager/1.5.2/QuestPackageManager.QuestPackageManager.installer.yaml b/manifests/q/QuestPackageManager/QuestPackageManager/1.5.2/QuestPackageManager.QuestPackageManager.installer.yaml new file mode 100644 index 0000000000000..579da34dca206 --- /dev/null +++ b/manifests/q/QuestPackageManager/QuestPackageManager/1.5.2/QuestPackageManager.QuestPackageManager.installer.yaml @@ -0,0 +1,26 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: QuestPackageManager.QuestPackageManager +PackageVersion: 1.5.2 +UpgradeBehavior: uninstallPrevious +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +Installers: +- Architecture: x64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: qpm.exe + PortableCommandAlias: qpm + InstallerUrl: https://github.com/QuestPackageManager/QPM.CLI/releases/download/v1.5.2/qpm-windows-x64.zip + InstallerSha256: 8F06D037E1A0B5F7BAFE2838D0E3DDF8271FE01A6AD404DEEFB458A22E3C4724 +- Architecture: x64 + InstallerType: inno + InstallerUrl: https://github.com/QuestPackageManager/QPM.CLI/releases/download/v1.5.2/qpm-installer.exe + InstallerSha256: 7D5239391EA321AE5DB093410FD02CDC0AA68AEBFC871D156A748B97236AEFCA + ElevationRequirement: elevatesSelf +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-07-06 diff --git a/manifests/q/QuestPackageManager/QuestPackageManager/1.5.2/QuestPackageManager.QuestPackageManager.locale.en-US.yaml b/manifests/q/QuestPackageManager/QuestPackageManager/1.5.2/QuestPackageManager.QuestPackageManager.locale.en-US.yaml new file mode 100644 index 0000000000000..6c94d896b1fab --- /dev/null +++ b/manifests/q/QuestPackageManager/QuestPackageManager/1.5.2/QuestPackageManager.QuestPackageManager.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: QuestPackageManager.QuestPackageManager +PackageVersion: 1.5.2 +PackageLocale: en-US +Publisher: QuestPackageManager +PublisherUrl: https://github.com/QuestPackageManager +PublisherSupportUrl: https://github.com/QuestPackageManager/QPM.CLI/issues +PackageName: Quest Package Manager +PackageUrl: https://github.com/QuestPackageManager/QPM.CLI +License: GPL-3.0 +ShortDescription: Quest Package Manager (QPM) is a command-line tool for managing and creating Quest mod projects. It functions as a package manager specifically designed for these projects, simplifying the process of handling mods and their dependencies. +Moniker: qpm +ReleaseNotesUrl: https://github.com/QuestPackageManager/QPM.CLI/releases/tag/v1.5.2 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/QuestPackageManager/QPM.CLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/q/QuestPackageManager/QuestPackageManager/1.5.2/QuestPackageManager.QuestPackageManager.yaml b/manifests/q/QuestPackageManager/QuestPackageManager/1.5.2/QuestPackageManager.QuestPackageManager.yaml new file mode 100644 index 0000000000000..776a9a31e6c02 --- /dev/null +++ b/manifests/q/QuestPackageManager/QuestPackageManager/1.5.2/QuestPackageManager.QuestPackageManager.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: QuestPackageManager.QuestPackageManager +PackageVersion: 1.5.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/r/RedHat/Podman/5.4.1/RedHat.Podman.installer.yaml b/manifests/r/RedHat/Podman/5.4.1/RedHat.Podman.installer.yaml index 79689459b7284..bbb9f5251b607 100644 --- a/manifests/r/RedHat/Podman/5.4.1/RedHat.Podman.installer.yaml +++ b/manifests/r/RedHat/Podman/5.4.1/RedHat.Podman.installer.yaml @@ -16,10 +16,6 @@ AppsAndFeaturesEntries: - ProductCode: '{7D55997A-A6D4-4496-A1FD-53B2503052C5}' UpgradeCode: '{F3E1F40A-A791-49B7-9BC6-050975293353}' InstallerType: burn -- DisplayName: podman - ProductCode: '{AAB477BD-A1F5-4580-A321-7D04B41C7AC8}' - UpgradeCode: '{A6A9DD9C-0732-44BA-9279-FFE22EA50671}' - InstallerType: wix Installers: - Architecture: x64 InstallerUrl: https://github.com/containers/podman/releases/download/v5.4.1/podman-5.4.1-setup.exe diff --git a/manifests/r/Runebook/Tome/0.9.2/Runebook.Tome.installer.yaml b/manifests/r/Runebook/Tome/0.9.2/Runebook.Tome.installer.yaml new file mode 100644 index 0000000000000..88e3ab39e2451 --- /dev/null +++ b/manifests/r/Runebook/Tome/0.9.2/Runebook.Tome.installer.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Runebook.Tome +PackageVersion: 0.9.2 +InstallerType: nullsoft +Scope: user +Protocols: +- tome +ProductCode: Tome +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/runebookai/tome/releases/download/0.9.2/Tome_0.9.2_x64-setup.exe + InstallerSha256: 8FC1A0108CA348A457E706804A48BC8663DC5399094759706883735A5E0A253E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/r/Runebook/Tome/0.9.2/Runebook.Tome.locale.en-US.yaml b/manifests/r/Runebook/Tome/0.9.2/Runebook.Tome.locale.en-US.yaml new file mode 100644 index 0000000000000..f3fdd42de303a --- /dev/null +++ b/manifests/r/Runebook/Tome/0.9.2/Runebook.Tome.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.10.0.schema.json + +PackageIdentifier: Runebook.Tome +PackageVersion: 0.9.2 +PackageLocale: en-US +Publisher: runebook +PublisherUrl: https://runebook.ai/ +PublisherSupportUrl: https://github.com/runebookai/tome/issues?q=sort%3Aupdated-desc+is%3Aissue+is%3Aopen +PackageName: Tome +PackageUrl: https://gettome.app/ +License: Apache-2.0 +LicenseUrl: https://github.com/runebookai/tome/blob/HEAD/LICENSE +ShortDescription: A desktop LLM client with magical MCP support +Description: |- + Tome is a desktop app that lets anyone harness the magic of LLMs and MCP. Download Tome, connect any local or remote LLM and hook it up to thousands of MCP servers to create your own magical AI-powered spellbook. + 🫥 Want it to be 100% local, 100% private? Use Ollama and Qwen3 with only local MCP servers to cast spells in your own pocket universe. ⚡ Want state of the art cloud models with the latest remote MCP servers? You can have that too. It's all up to you! +Tags: +- ai +- chatbot +- chatgpt +- gemini +- large-language-model +- llm +- mcp +- ollama +ReleaseNotes: |- + Fixes + - Fixed issue with scrollbars rendering empty space in lists + - Silenced various Svelte warnings + - Fixed issue where double dashes were being replaced with an emdash in inputs + (caused any MCP commands with flags to not work) + - Ensure the User's selected colorscheme is applied on startup + - Ensure the content area on all tabs is scrollable + Refactors + - Refactored the Setting model to behave the same as Config (static + properties that both getters/setters) + Misc + - Updated Gemini models to the currently available ones +ReleaseNotesUrl: https://github.com/runebookai/tome/releases/tag/0.9.2 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/r/Runebook/Tome/0.9.2/Runebook.Tome.locale.zh-CN.yaml b/manifests/r/Runebook/Tome/0.9.2/Runebook.Tome.locale.zh-CN.yaml new file mode 100644 index 0000000000000..4a8bc2ac118f5 --- /dev/null +++ b/manifests/r/Runebook/Tome/0.9.2/Runebook.Tome.locale.zh-CN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Runebook.Tome +PackageVersion: 0.9.2 +PackageLocale: zh-CN +ShortDescription: Tome 是一款桌面应用程序,允许任何人利用 LLMs 和 MCP 的魔力。 +Description: |- + Tome 是一款桌面应用程序,让每个人都能驾驭 LLM 与 MCP 的魔法。下载 Tome 后,您可以连接任意本地或云端 LLM,并将其与数千个 MCP 服务器联动,打造专属的 AI 魔法咒语书。 + 🫥 想要完全本地化、绝对私密?使用 Ollama 和 Qwen3 搭配纯本地 MCP 服务器,在私人小宇宙中施展咒语。⚡ 想要尖端云模型搭配最新远程 MCP 服务器?同样可以满足。一切由您掌控! +Tags: +- chatgpt +- gemini +- llm +- mcp +- ollama +- 人工智能 +- 大语言模型 +- 聊天机器人 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/r/Runebook/Tome/0.9.2/Runebook.Tome.yaml b/manifests/r/Runebook/Tome/0.9.2/Runebook.Tome.yaml new file mode 100644 index 0000000000000..b55b37b05a2cd --- /dev/null +++ b/manifests/r/Runebook/Tome/0.9.2/Runebook.Tome.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Runebook.Tome +PackageVersion: 0.9.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/s/SaaSGroup/Tower/9.1.522/SaaSGroup.Tower.installer.yaml b/manifests/s/SaaSGroup/Tower/9.1.522/SaaSGroup.Tower.installer.yaml new file mode 100644 index 0000000000000..210f89df03213 --- /dev/null +++ b/manifests/s/SaaSGroup/Tower/9.1.522/SaaSGroup.Tower.installer.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: SaaSGroup.Tower +PackageVersion: 9.1.522 +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.8 +ReleaseDate: 2025-07-01 +Installers: +- Architecture: x64 + InstallerType: exe + Scope: user + InstallerUrl: https://fournova-app-updates.s3.eu-west-1.amazonaws.com/apps/tower3-win/522-0644f276/Tower-9.1.522.exe + InstallerSha256: 38B542D4D7ADC62AD5B457602FD9512C71DBCF52B6529743ED0C4340D3C1BA4B + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent + ProductCode: Tower +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://fournova-app-updates.s3.eu-west-1.amazonaws.com/apps/tower3-win/522-0644f276/Tower-9.1.522.msi + InstallerSha256: 13C7A4A392E7C5FA25235BE06D15C5624993D40AB3B674E6EB1B3FCEC818A914 + InstallerSwitches: + InstallLocation: APPLICATIONROOTDIRECTORY="" + ProductCode: '{C1319531-5B5C-45CF-88D0-6F0F8342BD8F}' + AppsAndFeaturesEntries: + - DisplayName: Tower Deployment Tool + ProductCode: '{C1319531-5B5C-45CF-88D0-6F0F8342BD8F}' + UpgradeCode: '{3B1FBA9F-260D-5585-9DF1-C642CA263F35}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/s/SaaSGroup/Tower/9.1.522/SaaSGroup.Tower.locale.en-US.yaml b/manifests/s/SaaSGroup/Tower/9.1.522/SaaSGroup.Tower.locale.en-US.yaml new file mode 100644 index 0000000000000..b47ab2590798e --- /dev/null +++ b/manifests/s/SaaSGroup/Tower/9.1.522/SaaSGroup.Tower.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: SaaSGroup.Tower +PackageVersion: 9.1.522 +PackageLocale: en-US +Publisher: SaaS.Group +PublisherUrl: https://www.git-tower.com/ +PublisherSupportUrl: https://www.git-tower.com/support +PrivacyUrl: https://www.git-tower.com/legal/privacy-policy +Author: SaaS.group GmbH +PackageName: Tower +PackageUrl: https://www.git-tower.com/ +License: Proprietary +LicenseUrl: https://www.git-tower.com/legal/eula +Copyright: Copyright © 2013-2024 saas.group All rights reserved +CopyrightUrl: https://www.git-tower.com/legal/eula +ShortDescription: The most powerful Git client +Tags: +- git +ReleaseNotes: |- + New + Services: Added support for the Gitea service, allowing you to easily manage Gitea repositories within Tower. Gitmoji: Tower now supports Gitmoji when writing and viewing commit messages. + Improved + Portable Git: Updated to version 2.50.0 for improved compatibility and performance. Portable Git Installer: Upgraded the zip utility to support the latest compression formats. Shortcuts: Reassigned the Ctrl+Shift+Backspace shortcut to the Reset action and removed it from Discard All Changes, ensuring more intuitive shortcut behavior. Services: Enhanced logic for matching repositories to their configured services. UI: Improved visualization of parent–child branch relationships. Preferences: The default option for "Show Diffs For Merge Commits" has been changed from "None" to "First Parent". + Fixed + UI: Increased separator visibility in Dark Mode. Network Paths: Fixed a potential crash when handling network paths. LFS: Pulling LFS repositories now works as expected. Stacked Branches: Fixed an issue where the "Restack" context menu item was incorrectly enabled. Stacked Branches: Fixed an issue where, under certain conditions, restack dialog validation could run indefinitely. Sidebar: Remote names are now accurately updated after renaming. Sidebar: Remote context menu is now accurately updated after renaming. Crash: Potential crash when renaming a remote has been fixed. +ReleaseNotesUrl: https://www.git-tower.com/release-notes +PurchaseUrl: https://www.git-tower.com/pricing +Documentations: +- DocumentLabel: Help + DocumentUrl: https://www.git-tower.com/help +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/s/SaaSGroup/Tower/9.1.522/SaaSGroup.Tower.locale.zh-CN.yaml b/manifests/s/SaaSGroup/Tower/9.1.522/SaaSGroup.Tower.locale.zh-CN.yaml new file mode 100644 index 0000000000000..c1cab9f566b3a --- /dev/null +++ b/manifests/s/SaaSGroup/Tower/9.1.522/SaaSGroup.Tower.locale.zh-CN.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: SaaSGroup.Tower +PackageVersion: 9.1.522 +PackageLocale: zh-CN +Publisher: SaaS.Group +PublisherUrl: https://www.git-tower.com/ +PublisherSupportUrl: https://www.git-tower.com/support +PrivacyUrl: https://www.git-tower.com/legal/privacy-policy +Author: SaaS.group GmbH +PackageName: Tower +PackageUrl: https://www.git-tower.com/ +License: 专有软件 +LicenseUrl: https://www.git-tower.com/legal/eula +Copyright: Copyright © 2013-2024 saas.group All rights reserved +CopyrightUrl: https://www.git-tower.com/legal/eula +ShortDescription: 最强大的 Git 客户端 +Tags: +- git +ReleaseNotesUrl: https://www.git-tower.com/release-notes +PurchaseUrl: https://www.git-tower.com/pricing +Documentations: +- DocumentLabel: 帮助 + DocumentUrl: https://www.git-tower.com/help +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/s/SaaSGroup/Tower/9.1.522/SaaSGroup.Tower.yaml b/manifests/s/SaaSGroup/Tower/9.1.522/SaaSGroup.Tower.yaml new file mode 100644 index 0000000000000..304d6aadd3b53 --- /dev/null +++ b/manifests/s/SaaSGroup/Tower/9.1.522/SaaSGroup.Tower.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: SaaSGroup.Tower +PackageVersion: 9.1.522 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/s/SagerNet/sing-box/1.11.15/SagerNet.sing-box.installer.yaml b/manifests/s/SagerNet/sing-box/1.11.15/SagerNet.sing-box.installer.yaml new file mode 100644 index 0000000000000..f80d9f3918691 --- /dev/null +++ b/manifests/s/SagerNet/sing-box/1.11.15/SagerNet.sing-box.installer.yaml @@ -0,0 +1,26 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: SagerNet.sing-box +PackageVersion: 1.11.15 +InstallerType: zip +NestedInstallerType: portable +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + NestedInstallerFiles: + - RelativeFilePath: sing-box-1.11.15-windows-386/sing-box.exe + InstallerUrl: https://github.com/SagerNet/sing-box/releases/download/v1.11.15/sing-box-1.11.15-windows-386.zip + InstallerSha256: 2B40EBE5CC5F890B50B07F7486C2E382201B9F7AEEE3EDEE9F40DC1437A1AF4F +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: sing-box-1.11.15-windows-amd64/sing-box.exe + InstallerUrl: https://github.com/SagerNet/sing-box/releases/download/v1.11.15/sing-box-1.11.15-windows-amd64.zip + InstallerSha256: 9ACBDA81D7A9A93D8D0616990CF8B804523ADFCD0215D11A2DD9370746D2BE28 +- Architecture: arm64 + NestedInstallerFiles: + - RelativeFilePath: sing-box-1.11.15-windows-arm64/sing-box.exe + InstallerUrl: https://github.com/SagerNet/sing-box/releases/download/v1.11.15/sing-box-1.11.15-windows-arm64.zip + InstallerSha256: E164A4D0C2FBD3C5CF2AE10CA1C41F5A43F4FE91CC4D9A16F3804263F7C15BD7 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/s/SagerNet/sing-box/1.11.15/SagerNet.sing-box.locale.en-US.yaml b/manifests/s/SagerNet/sing-box/1.11.15/SagerNet.sing-box.locale.en-US.yaml new file mode 100644 index 0000000000000..d42eb2924afd1 --- /dev/null +++ b/manifests/s/SagerNet/sing-box/1.11.15/SagerNet.sing-box.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: SagerNet.sing-box +PackageVersion: 1.11.15 +PackageLocale: en-US +Publisher: SagerNet +PublisherUrl: https://sagernet.org/ +PublisherSupportUrl: https://raw.githubusercontent.com/SagerNet/sing-box/v1.8.1/docs/support.md +Author: SagerNet +PackageName: sing-box +PackageUrl: https://sing-box.sagernet.org/ +License: GNU General Public License Version 3 or Later +LicenseUrl: https://github.com/SagerNet/sing-box/blob/HEAD/LICENSE +Copyright: GNU General Public License Version 3 or Later +CopyrightUrl: https://raw.githubusercontent.com/SagerNet/sing-box/v1.8.1/LICENSE +ShortDescription: The universal proxy platform. +Moniker: sing-box +Tags: +- clash +- network +- proxy +- shadowsocks +- v2ray +- vpn +ReleaseNotes: |- + 📝 Release Notes + - Fixes and improvements + We are temporarily unable to update sing-box apps on the App Store because the reviewer mistakenly found that we + violated the rules (TestFlight users are not affected). +ReleaseNotesUrl: https://github.com/SagerNet/sing-box/releases/tag/v1.11.15 +Documentations: +- DocumentLabel: sing-box + DocumentUrl: https://sing-box.sagernet.org/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/s/SagerNet/sing-box/1.11.15/SagerNet.sing-box.locale.zh-CN.yaml b/manifests/s/SagerNet/sing-box/1.11.15/SagerNet.sing-box.locale.zh-CN.yaml new file mode 100644 index 0000000000000..d2c4480071d8e --- /dev/null +++ b/manifests/s/SagerNet/sing-box/1.11.15/SagerNet.sing-box.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: SagerNet.sing-box +PackageVersion: 1.11.15 +PackageLocale: zh-CN +Publisher: SagerNet +PublisherUrl: https://sagernet.org/ +PublisherSupportUrl: https://sing-box.sagernet.org/support +Author: SagerNet +PackageName: sing-box +PackageUrl: https://sing-box.sagernet.org/ +License: GNU General Public License Version 3 or Later +LicenseUrl: https://sing-box.sagernet.org/#license +Copyright: GNU General Public License Version 3 or Later +CopyrightUrl: https://sing-box.sagernet.org/#license +ShortDescription: 通用代理平台 +Tags: +- clash +- v2ray +- vpn +- 代理 +- 网络 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/s/SagerNet/sing-box/1.11.15/SagerNet.sing-box.yaml b/manifests/s/SagerNet/sing-box/1.11.15/SagerNet.sing-box.yaml new file mode 100644 index 0000000000000..d0736f686f7c7 --- /dev/null +++ b/manifests/s/SagerNet/sing-box/1.11.15/SagerNet.sing-box.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: SagerNet.sing-box +PackageVersion: 1.11.15 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/s/Scaleway/cli/2.41.0/Scaleway.cli.installer.yaml b/manifests/s/Scaleway/cli/2.41.0/Scaleway.cli.installer.yaml new file mode 100644 index 0000000000000..a6e57ecc4f532 --- /dev/null +++ b/manifests/s/Scaleway/cli/2.41.0/Scaleway.cli.installer.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Scaleway.cli +PackageVersion: 2.41.0 +InstallerType: portable +UpgradeBehavior: install +Commands: + - scw +ReleaseDate: 2025-06-23 +Installers: + - Architecture: x64 + InstallerUrl: https://github.com/scaleway/scaleway-cli/releases/download/v2.41.0/scaleway-cli_2.41.0_windows_amd64.exe + InstallerSha256: 9C816870DC048C70578AB0DAC9A4B80EBA8510816F515C11FCACEAB13B5B1758 + - Architecture: arm64 + InstallerUrl: https://github.com/scaleway/scaleway-cli/releases/download/v2.41.0/scaleway-cli_2.41.0_windows_arm64.exe + InstallerSha256: 8df024f07ceaf39eef8ad240f5c035ac0db1090d4e172c0845efc0fcdad00496 + - Architecture: x86 + InstallerUrl: https://github.com/scaleway/scaleway-cli/releases/download/v2.41.0/scaleway-cli_2.41.0_windows_386.exe + InstallerSha256: 8fa20556676f84cefc703f47f131b5fb21b1e442c94044e48da90b583090f693 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/s/Scaleway/cli/2.41.0/Scaleway.cli.locale.en-US.yaml b/manifests/s/Scaleway/cli/2.41.0/Scaleway.cli.locale.en-US.yaml new file mode 100644 index 0000000000000..ca723111ce617 --- /dev/null +++ b/manifests/s/Scaleway/cli/2.41.0/Scaleway.cli.locale.en-US.yaml @@ -0,0 +1,26 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Scaleway.cli +PackageVersion: 2.41.0 +PackageLocale: en-US +Publisher: Scaleway SAS +PublisherUrl: https://www.scaleway.com/en/ +PublisherSupportUrl: https://www.scaleway.com/en/docs/ +Author: Scaleway +PackageName: Scaleway CLI +PackageUrl: https://github.com/scaleway/scaleway-cli +License: Apache-2.0 +LicenseUrl: https://github.com/scaleway/scaleway-cli/blob/master/LICENSE +Copyright: Copyright (c) Scaleway SAS +ShortDescription: Command Line Interface for Scaleway +Moniker: scaleway-cli +Tags: + - cli + - go + - scaleway + - scaleway-cli + - scw +ReleaseNotesUrl: https://github.com/scaleway/scaleway-cli/releases/tag/v2.41.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/s/Scaleway/cli/2.41.0/Scaleway.cli.yaml b/manifests/s/Scaleway/cli/2.41.0/Scaleway.cli.yaml new file mode 100644 index 0000000000000..d148f2b2a5d08 --- /dev/null +++ b/manifests/s/Scaleway/cli/2.41.0/Scaleway.cli.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Scaleway.cli +PackageVersion: 2.41.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/s/Seafuture/NetpasMessage/0.9/Seafuture.NetpasMessage.installer.yaml b/manifests/s/Seafuture/NetpasMessage/0.9/Seafuture.NetpasMessage.installer.yaml index 85939cea37aa0..aea668b8b59fa 100644 --- a/manifests/s/Seafuture/NetpasMessage/0.9/Seafuture.NetpasMessage.installer.yaml +++ b/manifests/s/Seafuture/NetpasMessage/0.9/Seafuture.NetpasMessage.installer.yaml @@ -11,9 +11,9 @@ ProductCode: '{5744BE9E-4C12-4A23-BFFD-BBAE8C84456E}_is1' Installers: - Architecture: x86 InstallerUrl: https://file.netpas.net/ftp/NetpasMessageSetup.exe - InstallerSha256: F9E1BF46D8543ACFCD6BB424DDD7DA865A08D159834CAB9B88C406D86068F6B7 + InstallerSha256: 516DBB31DDA2836FBDD07D53DEE0B9199C5AF0C152B04FD2AD39A846C2AB673A - Architecture: x64 InstallerUrl: https://file.netpas.net/ftp/NetpasMessageSetup.exe - InstallerSha256: F9E1BF46D8543ACFCD6BB424DDD7DA865A08D159834CAB9B88C406D86068F6B7 + InstallerSha256: 516DBB31DDA2836FBDD07D53DEE0B9199C5AF0C152B04FD2AD39A846C2AB673A ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/s/Sentry/sentry-cli/2.47.0/Sentry.sentry-cli.installer.yaml b/manifests/s/Sentry/sentry-cli/2.47.0/Sentry.sentry-cli.installer.yaml new file mode 100644 index 0000000000000..131d80e4dffef --- /dev/null +++ b/manifests/s/Sentry/sentry-cli/2.47.0/Sentry.sentry-cli.installer.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Sentry.sentry-cli +PackageVersion: 2.47.0 +InstallerType: portable +Commands: +- sentry +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/getsentry/sentry-cli/releases/download/2.47.0/sentry-cli-Windows-i686.exe + InstallerSha256: DC0DF7DD659BA4C31EDA0BEB8C05B3F7106DD90B0F7EB5354533DE4D20B042EE + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 +- Architecture: x64 + InstallerUrl: https://github.com/getsentry/sentry-cli/releases/download/2.47.0/sentry-cli-Windows-x86_64.exe + InstallerSha256: 4B117AD6871AF32963A41F3CB3F1FA15674F2C03CA2CE89FE918CDE4BFE2A979 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/s/Sentry/sentry-cli/2.47.0/Sentry.sentry-cli.locale.en-US.yaml b/manifests/s/Sentry/sentry-cli/2.47.0/Sentry.sentry-cli.locale.en-US.yaml new file mode 100644 index 0000000000000..3919ebd457a17 --- /dev/null +++ b/manifests/s/Sentry/sentry-cli/2.47.0/Sentry.sentry-cli.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Sentry.sentry-cli +PackageVersion: 2.47.0 +PackageLocale: en-US +Publisher: Sentry +PublisherUrl: https://sentry.io/ +PublisherSupportUrl: https://github.com/getsentry/sentry-cli/issues +PrivacyUrl: https://sentry.io/privacy/ +Author: Functional Software, Inc. +PackageName: sentry-cli +PackageUrl: https://github.com/getsentry/sentry-cli +License: BSD-3-CLAUSE +LicenseUrl: https://github.com/getsentry/sentry-cli/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Sentry (https://sentry.io/) and individual contributors. All rights reserved. +ShortDescription: A command line utility to work with Sentry. +Moniker: sentry-cli +Tags: +- sentry +ReleaseNotes: |- + Various fixes & improvements + - ref: Exclude mobile-app command from release builds (#2582) by @szokeasaurusrex + - feat(login): Improve error output for login errors (#2581) by @szokeasaurusrex + - test(monitors): pass empty options to grep (#2562) by @lcian + - feat(login): Warn when overwriting existing auth token (#2554) by @szokeasaurusrex + - meta: Add .sentryclirc to gitignore (#2547) by @rbro112 + - build: Bump MSRV to 1.86 +ReleaseNotesUrl: https://github.com/getsentry/sentry-cli/releases/tag/2.47.0 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.sentry.io/cli/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/s/Sentry/sentry-cli/2.47.0/Sentry.sentry-cli.locale.zh-CN.yaml b/manifests/s/Sentry/sentry-cli/2.47.0/Sentry.sentry-cli.locale.zh-CN.yaml new file mode 100644 index 0000000000000..378aed6c80bf1 --- /dev/null +++ b/manifests/s/Sentry/sentry-cli/2.47.0/Sentry.sentry-cli.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Sentry.sentry-cli +PackageVersion: 2.47.0 +PackageLocale: zh-CN +Publisher: Sentry +PublisherUrl: https://sentry.io/ +PublisherSupportUrl: https://github.com/getsentry/sentry-cli/issues +PrivacyUrl: https://sentry.io/privacy/ +Author: Functional Software, Inc. +PackageName: sentry-cli +PackageUrl: https://github.com/getsentry/sentry-cli +License: BSD-3-CLAUSE +LicenseUrl: https://github.com/getsentry/sentry-cli/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Sentry (https://sentry.io/) and individual contributors. All rights reserved. +ShortDescription: 用于 Sentry 的命令行实用程序。 +Tags: +- sentry +ReleaseNotesUrl: https://github.com/getsentry/sentry-cli/releases/tag/2.47.0 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.sentry.io/cli/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/s/Sentry/sentry-cli/2.47.0/Sentry.sentry-cli.yaml b/manifests/s/Sentry/sentry-cli/2.47.0/Sentry.sentry-cli.yaml new file mode 100644 index 0000000000000..d20ba91ea26eb --- /dev/null +++ b/manifests/s/Sentry/sentry-cli/2.47.0/Sentry.sentry-cli.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Sentry.sentry-cli +PackageVersion: 2.47.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/s/Snijderlab/Annotator/1.2.0/Snijderlab.Annotator.installer.yaml b/manifests/s/Snijderlab/Annotator/1.2.0/Snijderlab.Annotator.installer.yaml new file mode 100644 index 0000000000000..5b823e8748339 --- /dev/null +++ b/manifests/s/Snijderlab/Annotator/1.2.0/Snijderlab.Annotator.installer.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Snijderlab.Annotator +PackageVersion: 1.2.0 +UpgradeBehavior: install +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/snijderlab/annotator/releases/download/v1.2.0/Annotator_1.2.0_x64-setup.exe + InstallerSha256: 0A773112AD302375F170CCC65B8237CB064A1C8376E862E5ABFEC667643E9364 + ProductCode: Annotator +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/snijderlab/annotator/releases/download/v1.2.0/Annotator_1.2.0_x64_en-US.msi + InstallerSha256: EDB21887B29255586795923FCC2D0AAA55B3EEB88BFBDED2F1A3D14C3D24B92E + InstallerSwitches: + InstallLocation: INSTALLDIR="" + ProductCode: '{7998DB88-2367-47A3-8853-2E6F87611379}' + AppsAndFeaturesEntries: + - ProductCode: '{7998DB88-2367-47A3-8853-2E6F87611379}' + UpgradeCode: '{7EEB6BC5-23EA-51E1-B28D-FC9633D3F90D}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/s/Snijderlab/Annotator/1.2.0/Snijderlab.Annotator.locale.en-US.yaml b/manifests/s/Snijderlab/Annotator/1.2.0/Snijderlab.Annotator.locale.en-US.yaml new file mode 100644 index 0000000000000..bc87df426efd8 --- /dev/null +++ b/manifests/s/Snijderlab/Annotator/1.2.0/Snijderlab.Annotator.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.10.0.schema.json + +PackageIdentifier: Snijderlab.Annotator +PackageVersion: 1.2.0 +PackageLocale: en-US +Publisher: snijderlab +PublisherUrl: https://github.com/snijderlab +PublisherSupportUrl: https://github.com/snijderlab/annotator/issues +Author: Snijderlab +PackageName: Annotator +PackageUrl: https://github.com/snijderlab/annotator +License: MIT +LicenseUrl: https://github.com/snijderlab/annotator/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Douwe Schulte and contributors +ShortDescription: Discover the depths of your spectra one spectrum at a time +Description: A simple tool to help you manually discover the depths of your spectra one spectrum at a time. It can load MGF files (only in centroid mode, also do not forget to deconvolute if you have TD data). Once loaded you can select a scan and add you annotation while tweaking the exact settings for generating the annotation. The annotation itself is interactive to help you discover what the spectrum means. Which you can then export as nice images for use in other environments. +Tags: +- spectrum +ReleaseNotes: |- + - Fixed manual not opening & updated manual + - Fixed links to open in the default browser + - Fixed some identified peptidoform issues (amongst other handle MSFragger files with missing columns) + - Fixed custom modification neutral losses not being shown (they were always applied) + - Fixed EAD glycan fragmentation + - Fixed custom glycan peptide fragments not being saved + - Improved peptide search speed, first search still takes a while but every subsequent search will be a lot quicker + - Improved handling of error in custom modifications and models files (errors are shown at the top of the list) + - Added support for PEAKS v13 Dia de novo + - Added support for factors for neutral losses (-2H2O instead of -H4O2) + - Added support for neutral losses from cross-linkers + Because of these last two the custom modifications and models JSON files have changed. The old files will still be read fine, but once edited the files will change to the updated JSON format. This is the reason why this update is listed as a minor release. +ReleaseNotesUrl: https://github.com/snijderlab/annotator/releases/tag/v1.2.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/s/Snijderlab/Annotator/1.2.0/Snijderlab.Annotator.locale.zh-CN.yaml b/manifests/s/Snijderlab/Annotator/1.2.0/Snijderlab.Annotator.locale.zh-CN.yaml new file mode 100644 index 0000000000000..95bdf04cb0d49 --- /dev/null +++ b/manifests/s/Snijderlab/Annotator/1.2.0/Snijderlab.Annotator.locale.zh-CN.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Snijderlab.Annotator +PackageVersion: 1.2.0 +PackageLocale: zh-CN +Publisher: snijderlab +PublisherUrl: https://github.com/snijderlab +PublisherSupportUrl: https://github.com/snijderlab/annotator/issues +Author: Snijderlab +PackageName: Annotator +PackageUrl: https://github.com/snijderlab/annotator +License: MIT +LicenseUrl: https://github.com/snijderlab/annotator/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Douwe Schulte and contributors +ShortDescription: 逐一探索光谱深度 +Description: 这是一款简单的工具,可帮助您手动逐个发现光谱深度。它可以加载 MGF 文件(仅在中心模式下,如果有 TD 数据,也不要忘记去卷积)。加载完成后,您可以选择扫描并添加注释,同时调整生成注释的具体设置。注释本身是交互式的,可帮助您发现光谱的含义。然后,您可以将其导出为漂亮的图像,以便在其它环境中使用。 +Tags: +- 光谱 +ReleaseNotesUrl: https://github.com/snijderlab/annotator/releases/tag/v1.2.0 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/s/Snijderlab/Annotator/1.2.0/Snijderlab.Annotator.yaml b/manifests/s/Snijderlab/Annotator/1.2.0/Snijderlab.Annotator.yaml new file mode 100644 index 0000000000000..e25d36cdefb5d --- /dev/null +++ b/manifests/s/Snijderlab/Annotator/1.2.0/Snijderlab.Annotator.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Snijderlab.Annotator +PackageVersion: 1.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/s/Softpcapps/MaximizeAlways/1.4/Softpcapps.MaximizeAlways.installer.yaml b/manifests/s/Softpcapps/MaximizeAlways/1.4/Softpcapps.MaximizeAlways.installer.yaml new file mode 100644 index 0000000000000..98129a900aaa0 --- /dev/null +++ b/manifests/s/Softpcapps/MaximizeAlways/1.4/Softpcapps.MaximizeAlways.installer.yaml @@ -0,0 +1,28 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Softpcapps.MaximizeAlways +PackageVersion: '1.4' +InstallerLocale: en-US +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +UpgradeBehavior: install +ProductCode: MaximizeAlways +ReleaseDate: 2024-02-23 +AppsAndFeaturesEntries: +- DisplayName: MaximizeAlways (remove only) + ProductCode: MaximizeAlways +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\softpcapps Software\MaximizeAlways' +Dependencies: + WindowsFeatures: + - netfx3 +Installers: +- Architecture: x86 + InstallerUrl: https://www.4dots-software.com/downloads/MaximizeAlwaysSetup.exe + InstallerSha256: 7FB043A1516682335A16C20B090126A6EAF156F75277F21E2026993D142F8C53 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/s/Softpcapps/MaximizeAlways/1.4/Softpcapps.MaximizeAlways.locale.en-US.yaml b/manifests/s/Softpcapps/MaximizeAlways/1.4/Softpcapps.MaximizeAlways.locale.en-US.yaml new file mode 100644 index 0000000000000..0db750b35b8e4 --- /dev/null +++ b/manifests/s/Softpcapps/MaximizeAlways/1.4/Softpcapps.MaximizeAlways.locale.en-US.yaml @@ -0,0 +1,25 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Softpcapps.MaximizeAlways +PackageVersion: '1.4' +PackageLocale: en-US +Publisher: softpcapps Software +PublisherUrl: https://softpcapps.com/ +PublisherSupportUrl: https://softpcapps.com/support/ +Author: softpcapps.com +PackageName: Maximize Always +PackageUrl: https://softpcapps.com/maximize-always/ +License: Freeware for personal use only +LicenseUrl: https://softpcapps.com/maximize-always/ +Copyright: Copyright 2023 softpcapps Software +CopyrightUrl: https://softpcapps.com/maximize-always/ +ShortDescription: Start and keep maximized automatically specified applications or windows. +Description: Maximize Always is a utility that allows the user to start maximized automatically any specified application and keep it maximized. +Tags: +- desktop +- maximize +- window +- windows +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/s/Softpcapps/MaximizeAlways/1.4/Softpcapps.MaximizeAlways.yaml b/manifests/s/Softpcapps/MaximizeAlways/1.4/Softpcapps.MaximizeAlways.yaml new file mode 100644 index 0000000000000..8ca00a84c2fb6 --- /dev/null +++ b/manifests/s/Softpcapps/MaximizeAlways/1.4/Softpcapps.MaximizeAlways.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Softpcapps.MaximizeAlways +PackageVersion: '1.4' +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/s/SoftwareOK/Q-Dir/12.23/SoftwareOK.Q-Dir.installer.yaml b/manifests/s/SoftwareOK/Q-Dir/12.26/SoftwareOK.Q-Dir.installer.yaml similarity index 75% rename from manifests/s/SoftwareOK/Q-Dir/12.23/SoftwareOK.Q-Dir.installer.yaml rename to manifests/s/SoftwareOK/Q-Dir/12.26/SoftwareOK.Q-Dir.installer.yaml index c348c44a3635a..38255a88598a8 100644 --- a/manifests/s/SoftwareOK/Q-Dir/12.23/SoftwareOK.Q-Dir.installer.yaml +++ b/manifests/s/SoftwareOK/Q-Dir/12.26/SoftwareOK.Q-Dir.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: SoftwareOK.Q-Dir -PackageVersion: "12.23" +PackageVersion: "12.26" InstallerType: zip NestedInstallerType: exe InstallModes: @@ -15,20 +15,20 @@ InstallerSuccessCodes: - 1 UpgradeBehavior: install ProductCode: Q-Dir -ReleaseDate: 2025-06-16 +ReleaseDate: 2025-07-04 Installers: - Architecture: x86 NestedInstallerFiles: - RelativeFilePath: Q-Dir_Installer_UC.exe Scope: user InstallerUrl: https://www.softwareok.com/Download/Q-Dir_Installer.zip - InstallerSha256: 560772EDA9E939FFE8D562A3C9AC347000169700EC6D3F34D9880474368CF095 + InstallerSha256: 7C965C797B00C7087D33707A341F034D938257B9243B258176FC9774AAA88D95 - Architecture: x86 NestedInstallerFiles: - RelativeFilePath: Q-Dir_Installer_UC.exe Scope: machine InstallerUrl: https://www.softwareok.com/Download/Q-Dir_Installer.zip - InstallerSha256: 560772EDA9E939FFE8D562A3C9AC347000169700EC6D3F34D9880474368CF095 + InstallerSha256: 7C965C797B00C7087D33707A341F034D938257B9243B258176FC9774AAA88D95 InstallerSwitches: Custom: forall ElevationRequirement: elevatesSelf @@ -37,13 +37,13 @@ Installers: - RelativeFilePath: Q-Dir_Installer_x64.exe Scope: user InstallerUrl: https://www.softwareok.com/Download/Q-Dir_Installer_x64.zip - InstallerSha256: 7E6370327C1A0F63855606F9839B9B8FBB7DD4EE7604754A04DA416DBB2F81B6 + InstallerSha256: 5DD24BF0B2631AFB61B12C651121C5997278E5F471A5DBCE549683FD3883302D - Architecture: x64 NestedInstallerFiles: - RelativeFilePath: Q-Dir_Installer_x64.exe Scope: machine InstallerUrl: https://www.softwareok.com/Download/Q-Dir_Installer_x64.zip - InstallerSha256: 7E6370327C1A0F63855606F9839B9B8FBB7DD4EE7604754A04DA416DBB2F81B6 + InstallerSha256: 5DD24BF0B2631AFB61B12C651121C5997278E5F471A5DBCE549683FD3883302D InstallerSwitches: Custom: forall ElevationRequirement: elevatesSelf diff --git a/manifests/s/SoftwareOK/Q-Dir/12.23/SoftwareOK.Q-Dir.locale.en-US.yaml b/manifests/s/SoftwareOK/Q-Dir/12.26/SoftwareOK.Q-Dir.locale.en-US.yaml similarity index 87% rename from manifests/s/SoftwareOK/Q-Dir/12.23/SoftwareOK.Q-Dir.locale.en-US.yaml rename to manifests/s/SoftwareOK/Q-Dir/12.26/SoftwareOK.Q-Dir.locale.en-US.yaml index 05fb27e9f396b..49d0e4dfade8b 100644 --- a/manifests/s/SoftwareOK/Q-Dir/12.23/SoftwareOK.Q-Dir.locale.en-US.yaml +++ b/manifests/s/SoftwareOK/Q-Dir/12.26/SoftwareOK.Q-Dir.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: SoftwareOK.Q-Dir -PackageVersion: "12.23" +PackageVersion: "12.26" PackageLocale: en-US Publisher: SoftwareOK PublisherUrl: https://www.softwareok.com/ @@ -24,8 +24,8 @@ Tags: - find - folder ReleaseNotes: |- - - Usability Improvements and Other Fixes - - Language File Update in Quad Explorer for all Windows OS + - Further improvements to the Win-11 OperationStatusWindow bug + - General Quad Explorer improvements for all Windows OS ReleaseNotesUrl: https://www.softwareok.com/?seite=Freeware/Q-Dir/History Documentations: - DocumentLabel: Manual diff --git a/manifests/s/SoftwareOK/Q-Dir/12.23/SoftwareOK.Q-Dir.locale.zh-CN.yaml b/manifests/s/SoftwareOK/Q-Dir/12.26/SoftwareOK.Q-Dir.locale.zh-CN.yaml similarity index 94% rename from manifests/s/SoftwareOK/Q-Dir/12.23/SoftwareOK.Q-Dir.locale.zh-CN.yaml rename to manifests/s/SoftwareOK/Q-Dir/12.26/SoftwareOK.Q-Dir.locale.zh-CN.yaml index 61fef3b904eb6..162302a3372f1 100644 --- a/manifests/s/SoftwareOK/Q-Dir/12.23/SoftwareOK.Q-Dir.locale.zh-CN.yaml +++ b/manifests/s/SoftwareOK/Q-Dir/12.26/SoftwareOK.Q-Dir.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: SoftwareOK.Q-Dir -PackageVersion: "12.23" +PackageVersion: "12.26" PackageLocale: zh-CN License: 免费软件 ShortDescription: Q-Dir 四窗格文件管理器 diff --git a/manifests/s/SoftwareOK/Q-Dir/12.23/SoftwareOK.Q-Dir.yaml b/manifests/s/SoftwareOK/Q-Dir/12.26/SoftwareOK.Q-Dir.yaml similarity index 88% rename from manifests/s/SoftwareOK/Q-Dir/12.23/SoftwareOK.Q-Dir.yaml rename to manifests/s/SoftwareOK/Q-Dir/12.26/SoftwareOK.Q-Dir.yaml index 15e73b4d19d3e..f49886c8f8fb5 100644 --- a/manifests/s/SoftwareOK/Q-Dir/12.23/SoftwareOK.Q-Dir.yaml +++ b/manifests/s/SoftwareOK/Q-Dir/12.26/SoftwareOK.Q-Dir.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: SoftwareOK.Q-Dir -PackageVersion: "12.23" +PackageVersion: "12.26" DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/s/SonicWall/ConnectTunnel/12.4.3.311/SonicWall.ConnectTunnel.installer.yaml b/manifests/s/SonicWall/ConnectTunnel/12.4.3.311/SonicWall.ConnectTunnel.installer.yaml new file mode 100644 index 0000000000000..9ed5e99ea3e70 --- /dev/null +++ b/manifests/s/SonicWall/ConnectTunnel/12.4.3.311/SonicWall.ConnectTunnel.installer.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: SonicWall.ConnectTunnel +PackageVersion: 12.4.3.311 +InstallerType: burn +Scope: machine +UpgradeBehavior: install +Protocols: +- connecttunnel +Installers: +- Architecture: x86 + InstallerUrl: https://software.sonicwall.com/CT-NX-VPNClients/CT-12.4.3/ConnectTunnel_x86-12.4.3.311.exe + InstallerSha256: CF9A0A665771A176C3DCEF2819260F5D61B3000D2CF81048D455A3D4C7CED8F7 + ProductCode: '{5f682ea7-55fa-4db6-a0c7-e467f3fe8ac8}' + AppsAndFeaturesEntries: + - UpgradeCode: '{E0FFFEA4-70AC-4668-AE50-9C780F980DDE}' +- Architecture: x64 + InstallerUrl: https://software.sonicwall.com/CT-NX-VPNClients/CT-12.4.3/ConnectTunnel_x64-12.4.3.311.exe + InstallerSha256: CDF44E57AC9C748B44F2C75C2059D1FE0A712B494506E4AD8A29748A0F9680CF + ProductCode: '{e96e0633-ebe8-42a2-8975-ddf13ed678c8}' + AppsAndFeaturesEntries: + - UpgradeCode: '{E0FFFEA4-70AC-4668-AE50-9C780F980DDE}' +- Architecture: arm64 + InstallerUrl: https://software.sonicwall.com/CT-NX-VPNClients/CT-12.4.3/ConnectTunnel_arm64-12.4.3.311.exe + InstallerSha256: F8C11B8B1CA0CC66DD054BB49DF9C67C4073B4377392670B2DF7C119B222CCC9 + ProductCode: '{31221c0b-dbd4-481b-9438-eb9e4cf29b3c}' + AppsAndFeaturesEntries: + - UpgradeCode: '{E0FFFEA4-70AC-4668-AE50-9C780F980DDE}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/s/SonicWall/ConnectTunnel/12.4.3.311/SonicWall.ConnectTunnel.locale.en-US.yaml b/manifests/s/SonicWall/ConnectTunnel/12.4.3.311/SonicWall.ConnectTunnel.locale.en-US.yaml new file mode 100644 index 0000000000000..e02ec1cb8beed --- /dev/null +++ b/manifests/s/SonicWall/ConnectTunnel/12.4.3.311/SonicWall.ConnectTunnel.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: SonicWall.ConnectTunnel +PackageVersion: 12.4.3.311 +PackageLocale: en-US +Publisher: SonicWall Inc. +PublisherUrl: https://www.sonicwall.com/ +PublisherSupportUrl: https://www.sonicwall.com/support +PrivacyUrl: https://www.sonicwall.com/legal/privacy-statement +Author: SonicWall, Inc. +PackageName: Connect Tunnel +PackageUrl: https://www.sonicwall.com/products/remote-access/vpn-clients +License: Proprietary +LicenseUrl: https://www.sonicwall.com/legal/end-user-product-agreements +Copyright: © 2025 SonicWall Inc. All rights reserved. +CopyrightUrl: https://www.sonicwall.com/legal/end-user-product-agreements +ShortDescription: Connect Tunnel provides secure remote access for IT-managed devices. +Description: |- + The Connect Tunnel provides an “in-office” experience for a remote working world with full access away from the office. For IT-managed Mac, Windows, and Linux users, this thin client delivers fast and secure remote access to sensitive corporate data and assets. For Windows 10 users, Connect Tunnel supports Device Guard, a Windows server component which enables secure authorized access. + With Connect Tunnel, you always maintain centralized control because it integrates directly with SMA 1000 Unified Policy and End Point Control (EPC) to ensure a safe environment and a compliant device before allowing network access. +# Moniker: +Tags: +- network +- vpn +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Technical Documentation + DocumentUrl: https://www.sonicwall.com/support/technical-documentation?language=English&category=Secure%20Remote%20Access +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/s/SonicWall/ConnectTunnel/12.4.3.311/SonicWall.ConnectTunnel.locale.zh-CN.yaml b/manifests/s/SonicWall/ConnectTunnel/12.4.3.311/SonicWall.ConnectTunnel.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f113c512868cb --- /dev/null +++ b/manifests/s/SonicWall/ConnectTunnel/12.4.3.311/SonicWall.ConnectTunnel.locale.zh-CN.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: SonicWall.ConnectTunnel +PackageVersion: 12.4.3.311 +PackageLocale: zh-CN +# Publisher: +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +# PackageName: +# PackageUrl: +License: 专有软件 +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: Connect Tunnel 为 IT 管理的设备提供安全的远程访问。 +Description: |- + Connect Tunnel 为远程办公世界提供“身临办公室”的体验,实现脱离物理办公场所的全面接入。这款轻量级客户端为 IT 管理的 Mac、Windows 和 Linux 用户提供快速安全的敏感企业数据与资产远程访问。针对 Windows 10 用户,Connect Tunnel 支持 Device Guard(设备防护)功能——该 Windows 服务器组件可确保安全的授权访问。 + 通过 Connect Tunnel,您始终能保持集中管控,因其直接与 SMA 1000 统一策略及终端控制(EPC)系统集成,在允许网络访问前严格验证安全环境与合规设备状态。 +# Moniker: +Tags: +- vpn +- 网络 +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: 技术文档 + DocumentUrl: https://www.sonicwall.com/support/technical-documentation?language=English&category=Secure%20Remote%20Access +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/s/SonicWall/ConnectTunnel/12.4.3.311/SonicWall.ConnectTunnel.yaml b/manifests/s/SonicWall/ConnectTunnel/12.4.3.311/SonicWall.ConnectTunnel.yaml new file mode 100644 index 0000000000000..3fe3560d84851 --- /dev/null +++ b/manifests/s/SonicWall/ConnectTunnel/12.4.3.311/SonicWall.ConnectTunnel.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: SonicWall.ConnectTunnel +PackageVersion: 12.4.3.311 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/s/Speakeasy/speakeasy/1.576.1/Speakeasy.speakeasy.installer.yaml b/manifests/s/Speakeasy/speakeasy/1.576.1/Speakeasy.speakeasy.installer.yaml new file mode 100644 index 0000000000000..8e7c2b9231449 --- /dev/null +++ b/manifests/s/Speakeasy/speakeasy/1.576.1/Speakeasy.speakeasy.installer.yaml @@ -0,0 +1,34 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json +PackageIdentifier: Speakeasy.speakeasy +PackageVersion: 1.576.1 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-07-07" +Installers: + - Architecture: x86 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: speakeasy.exe + PortableCommandAlias: speakeasy + InstallerUrl: https://github.com/speakeasy-api/speakeasy/releases/download/v1.576.1/speakeasy_windows_386.zip + InstallerSha256: 8990e7fab65303fa1ac32ca465c1fed2ae0a4a61c32514840e9638d6f23c3dc3 + UpgradeBehavior: uninstallPrevious + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: speakeasy.exe + PortableCommandAlias: speakeasy + InstallerUrl: https://github.com/speakeasy-api/speakeasy/releases/download/v1.576.1/speakeasy_windows_arm64.zip + InstallerSha256: 7fc25d0c42dbfaad45028ea58fda20f71035cd43e2d63bf9cc061aa6f0f718a7 + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: speakeasy.exe + PortableCommandAlias: speakeasy + InstallerUrl: https://github.com/speakeasy-api/speakeasy/releases/download/v1.576.1/speakeasy_windows_amd64.zip + InstallerSha256: 756e6decfe23152e314d33a5aa3aed9dd5d4068673cc65c6dfb0b66cd9ddf99b + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/s/Speakeasy/speakeasy/1.576.1/Speakeasy.speakeasy.locale.en-US.yaml b/manifests/s/Speakeasy/speakeasy/1.576.1/Speakeasy.speakeasy.locale.en-US.yaml new file mode 100644 index 0000000000000..213471b2a7dfc --- /dev/null +++ b/manifests/s/Speakeasy/speakeasy/1.576.1/Speakeasy.speakeasy.locale.en-US.yaml @@ -0,0 +1,28 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +PackageIdentifier: Speakeasy.speakeasy +PackageVersion: 1.576.1 +PackageLocale: en-US +Publisher: Speakeasy +PublisherUrl: https://www.speakeasy.com +PublisherSupportUrl: https://github.com/speakeasy-api/speakeasy/issues +PackageName: speakeasy +PackageUrl: https://www.speakeasy.com +License: elastic +LicenseUrl: https://github.com/speakeasy-api/speakeasy/blob/main/LICENSE +Copyright: 2024 Speakeasy, Inc +ShortDescription: Speakeasy CLI makes validating API specs and generating idiomatic SDKs easy! +Description: |- + This CLI is a tool for interacting with the Speakeasy platform - the CLI brings the functionality of Speakeasy into your development workflow. It can be run locally or in your CI/CD pipeline to validate your API specs, generate SDKs and more. + + Current functions of the CLI include: + + Generating idiomatic client SDKs from OpenAPI 3.x specs: + Live: Go, Python3, Typescript(Node), Java, PHP, Ruby, Terraform + Validating the correctness of OpenAPI3 specs. The CLI has a built in command to validate your spec and post helpful error messages. + Authenticating with the platform and managing API keys. +Moniker: speakeasy +ReleaseNotes: https://github.com/speakeasy-api/speakeasy/releases/tag/v1.576.1 +ReleaseNotesUrl: https://github.com/speakeasy-api/speakeasy/releases/tag/v1.576.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/s/Speakeasy/speakeasy/1.576.1/Speakeasy.speakeasy.yaml b/manifests/s/Speakeasy/speakeasy/1.576.1/Speakeasy.speakeasy.yaml new file mode 100644 index 0000000000000..c12887ad9c14c --- /dev/null +++ b/manifests/s/Speakeasy/speakeasy/1.576.1/Speakeasy.speakeasy.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json +PackageIdentifier: Speakeasy.speakeasy +PackageVersion: 1.576.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/s/Speakeasy/speakeasy/1.580.0/Speakeasy.speakeasy.installer.yaml b/manifests/s/Speakeasy/speakeasy/1.580.0/Speakeasy.speakeasy.installer.yaml new file mode 100644 index 0000000000000..5c55e982947f6 --- /dev/null +++ b/manifests/s/Speakeasy/speakeasy/1.580.0/Speakeasy.speakeasy.installer.yaml @@ -0,0 +1,34 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json +PackageIdentifier: Speakeasy.speakeasy +PackageVersion: 1.580.0 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-07-08" +Installers: + - Architecture: x86 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: speakeasy.exe + PortableCommandAlias: speakeasy + InstallerUrl: https://github.com/speakeasy-api/speakeasy/releases/download/v1.580.0/speakeasy_windows_386.zip + InstallerSha256: 0f3078d7c29a3e6ebd3e28c5c3ca4970cef6b99661fe43eb9a2dfd5ae14d4a60 + UpgradeBehavior: uninstallPrevious + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: speakeasy.exe + PortableCommandAlias: speakeasy + InstallerUrl: https://github.com/speakeasy-api/speakeasy/releases/download/v1.580.0/speakeasy_windows_arm64.zip + InstallerSha256: 1cfb528c75afd7a71d837bf73dad0ff27fb303219a9cec1aa6eaea61f28e2f40 + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: speakeasy.exe + PortableCommandAlias: speakeasy + InstallerUrl: https://github.com/speakeasy-api/speakeasy/releases/download/v1.580.0/speakeasy_windows_amd64.zip + InstallerSha256: e3560cbdb4f4a2fd8b99924b02eef59dcdcd3b97a817fcf7b7bcddd34e9de849 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/s/Speakeasy/speakeasy/1.580.0/Speakeasy.speakeasy.locale.en-US.yaml b/manifests/s/Speakeasy/speakeasy/1.580.0/Speakeasy.speakeasy.locale.en-US.yaml new file mode 100644 index 0000000000000..27a1c9d3fb84f --- /dev/null +++ b/manifests/s/Speakeasy/speakeasy/1.580.0/Speakeasy.speakeasy.locale.en-US.yaml @@ -0,0 +1,28 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +PackageIdentifier: Speakeasy.speakeasy +PackageVersion: 1.580.0 +PackageLocale: en-US +Publisher: Speakeasy +PublisherUrl: https://www.speakeasy.com +PublisherSupportUrl: https://github.com/speakeasy-api/speakeasy/issues +PackageName: speakeasy +PackageUrl: https://www.speakeasy.com +License: elastic +LicenseUrl: https://github.com/speakeasy-api/speakeasy/blob/main/LICENSE +Copyright: 2024 Speakeasy, Inc +ShortDescription: Speakeasy CLI makes validating API specs and generating idiomatic SDKs easy! +Description: |- + This CLI is a tool for interacting with the Speakeasy platform - the CLI brings the functionality of Speakeasy into your development workflow. It can be run locally or in your CI/CD pipeline to validate your API specs, generate SDKs and more. + + Current functions of the CLI include: + + Generating idiomatic client SDKs from OpenAPI 3.x specs: + Live: Go, Python3, Typescript(Node), Java, PHP, Ruby, Terraform + Validating the correctness of OpenAPI3 specs. The CLI has a built in command to validate your spec and post helpful error messages. + Authenticating with the platform and managing API keys. +Moniker: speakeasy +ReleaseNotes: https://github.com/speakeasy-api/speakeasy/releases/tag/v1.580.0 +ReleaseNotesUrl: https://github.com/speakeasy-api/speakeasy/releases/tag/v1.580.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/s/Speakeasy/speakeasy/1.580.0/Speakeasy.speakeasy.yaml b/manifests/s/Speakeasy/speakeasy/1.580.0/Speakeasy.speakeasy.yaml new file mode 100644 index 0000000000000..ef0888389bca3 --- /dev/null +++ b/manifests/s/Speakeasy/speakeasy/1.580.0/Speakeasy.speakeasy.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json +PackageIdentifier: Speakeasy.speakeasy +PackageVersion: 1.580.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/s/Streamlink/Streamlink/7.5.0-1/Streamlink.Streamlink.installer.yaml b/manifests/s/Streamlink/Streamlink/7.5.0-1/Streamlink.Streamlink.installer.yaml new file mode 100644 index 0000000000000..f74875ce67a25 --- /dev/null +++ b/manifests/s/Streamlink/Streamlink/7.5.0-1/Streamlink.Streamlink.installer.yaml @@ -0,0 +1,26 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Streamlink.Streamlink +PackageVersion: 7.5.0-1 +InstallerLocale: en-US +InstallerType: nullsoft +InstallModes: +- interactive +- silent +UpgradeBehavior: install +ProductCode: Streamlink +ReleaseDate: 2025-07-08 +AppsAndFeaturesEntries: +- ProductCode: Streamlink +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/streamlink/windows-builds/releases/download/7.5.0-1/streamlink-7.5.0-1-py313-x86_64.exe + InstallerSha256: F7485933745F54B6AD6208BAAC34D387FA3062D01F03C6DD8ACA2B3070E02A1E +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/streamlink/windows-builds/releases/download/7.5.0-1/streamlink-7.5.0-1-py313-x86_64.exe + InstallerSha256: F7485933745F54B6AD6208BAAC34D387FA3062D01F03C6DD8ACA2B3070E02A1E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/s/Streamlink/Streamlink/7.5.0-1/Streamlink.Streamlink.locale.en-US.yaml b/manifests/s/Streamlink/Streamlink/7.5.0-1/Streamlink.Streamlink.locale.en-US.yaml new file mode 100644 index 0000000000000..6fdd366c64770 --- /dev/null +++ b/manifests/s/Streamlink/Streamlink/7.5.0-1/Streamlink.Streamlink.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Streamlink.Streamlink +PackageVersion: 7.5.0-1 +PackageLocale: en-US +Publisher: Streamlink +PublisherUrl: https://github.com/streamlink/streamlink +PublisherSupportUrl: https://github.com/streamlink/streamlink/issues +Author: Streamlink +PackageName: Streamlink +PackageUrl: https://streamlink.github.io/ +License: BSD-2-Clause +LicenseUrl: https://github.com/streamlink/windows-builds/blob/HEAD/LICENSE +Copyright: Copyright (c) 2016-2024, Streamlink Team +CopyrightUrl: https://raw.githubusercontent.com/streamlink/streamlink/master/LICENSE +ShortDescription: Streamlink is a CLI utility which pipes video streams from various services into a video player, such as VLC. +Tags: +- cli +- livestream +- streaming +- streaming-services +- twitch +- vlc +ReleaseNotes: |- + 📝 Changelog + - streamlink/streamlink (release changelog) + - streamlink/windows-builds (packaging changelog) + ⚙️ Instructions + See the README.md for all the details about the installers and portable archives. + Further information can be found in Streamlink's install docs and Command-Line Interface usage guide. + ❤️ Support + If you think that Streamlink is useful and if you want to keep the project alive, then please consider supporting its maintainers by sending a small and optionally recurring tip via the available options. + Your support is very much appreciated, thank you! +ReleaseNotesUrl: https://github.com/streamlink/windows-builds/releases/tag/7.5.0-1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/s/Streamlink/Streamlink/7.5.0-1/Streamlink.Streamlink.yaml b/manifests/s/Streamlink/Streamlink/7.5.0-1/Streamlink.Streamlink.yaml new file mode 100644 index 0000000000000..f98877dcf0ee5 --- /dev/null +++ b/manifests/s/Streamlink/Streamlink/7.5.0-1/Streamlink.Streamlink.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Streamlink.Streamlink +PackageVersion: 7.5.0-1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/s/Suwayomi/Tachidesk-Server/0.6.1/Suwayomi.Tachidesk-Server.installer.yaml b/manifests/s/Suwayomi/Suwayomi-Server/0.6.1/Suwayomi.Suwayomi-Server.installer.yaml similarity index 93% rename from manifests/s/Suwayomi/Tachidesk-Server/0.6.1/Suwayomi.Tachidesk-Server.installer.yaml rename to manifests/s/Suwayomi/Suwayomi-Server/0.6.1/Suwayomi.Suwayomi-Server.installer.yaml index b030014483f99..00518c56bc779 100644 --- a/manifests/s/Suwayomi/Tachidesk-Server/0.6.1/Suwayomi.Tachidesk-Server.installer.yaml +++ b/manifests/s/Suwayomi/Suwayomi-Server/0.6.1/Suwayomi.Suwayomi-Server.installer.yaml @@ -1,7 +1,7 @@ # Created using wingetcreate 0.5.0.1 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.1.0.schema.json -PackageIdentifier: Suwayomi.Tachidesk-Server +PackageIdentifier: Suwayomi.Suwayomi-Server PackageVersion: 0.6.1 MinimumOSVersion: 10.0.0.0 InstallerType: msi @@ -19,4 +19,3 @@ Installers: ManifestType: installer ManifestVersion: 1.1.0 ReleaseDate: 2022-02-18 - diff --git a/manifests/s/Suwayomi/Tachidesk-Server/0.6.1/Suwayomi.Tachidesk-Server.locale.en-US.yaml b/manifests/s/Suwayomi/Suwayomi-Server/0.6.1/Suwayomi.Suwayomi-Server.locale.en-US.yaml similarity index 95% rename from manifests/s/Suwayomi/Tachidesk-Server/0.6.1/Suwayomi.Tachidesk-Server.locale.en-US.yaml rename to manifests/s/Suwayomi/Suwayomi-Server/0.6.1/Suwayomi.Suwayomi-Server.locale.en-US.yaml index 8c393e045447b..fd42692cb7c75 100644 --- a/manifests/s/Suwayomi/Tachidesk-Server/0.6.1/Suwayomi.Tachidesk-Server.locale.en-US.yaml +++ b/manifests/s/Suwayomi/Suwayomi-Server/0.6.1/Suwayomi.Suwayomi-Server.locale.en-US.yaml @@ -1,7 +1,7 @@ # Created using wingetcreate 0.5.0.1 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.1.0.schema.json -PackageIdentifier: Suwayomi.Tachidesk-Server +PackageIdentifier: Suwayomi.Suwayomi-Server PackageVersion: 0.6.1 PackageLocale: en-US Publisher: Suwayomi @@ -23,4 +23,3 @@ Tags: ReleaseNotesUrl: https://github.com/Suwayomi/Tachidesk-Server/releases/tag/v0.6.1 ManifestType: defaultLocale ManifestVersion: 1.1.0 - diff --git a/manifests/s/Suwayomi/Tachidesk-Server/0.6.1/Suwayomi.Tachidesk-Server.yaml b/manifests/s/Suwayomi/Suwayomi-Server/0.6.1/Suwayomi.Suwayomi-Server.yaml similarity index 82% rename from manifests/s/Suwayomi/Tachidesk-Server/0.6.1/Suwayomi.Tachidesk-Server.yaml rename to manifests/s/Suwayomi/Suwayomi-Server/0.6.1/Suwayomi.Suwayomi-Server.yaml index d6e0ec4910953..6c5f4b57c8178 100644 --- a/manifests/s/Suwayomi/Tachidesk-Server/0.6.1/Suwayomi.Tachidesk-Server.yaml +++ b/manifests/s/Suwayomi/Suwayomi-Server/0.6.1/Suwayomi.Suwayomi-Server.yaml @@ -1,9 +1,8 @@ # Created using wingetcreate 0.5.0.1 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.1.0.schema.json -PackageIdentifier: Suwayomi.Tachidesk-Server +PackageIdentifier: Suwayomi.Suwayomi-Server PackageVersion: 0.6.1 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.1.0 - diff --git a/manifests/s/Suwayomi/Tachidesk-Server/0.6.2/Suwayomi.Tachidesk-Server.installer.yaml b/manifests/s/Suwayomi/Suwayomi-Server/0.6.2/Suwayomi.Suwayomi-Server.installer.yaml similarity index 93% rename from manifests/s/Suwayomi/Tachidesk-Server/0.6.2/Suwayomi.Tachidesk-Server.installer.yaml rename to manifests/s/Suwayomi/Suwayomi-Server/0.6.2/Suwayomi.Suwayomi-Server.installer.yaml index 5831086263219..37665024b8225 100644 --- a/manifests/s/Suwayomi/Tachidesk-Server/0.6.2/Suwayomi.Tachidesk-Server.installer.yaml +++ b/manifests/s/Suwayomi/Suwayomi-Server/0.6.2/Suwayomi.Suwayomi-Server.installer.yaml @@ -1,7 +1,7 @@ # Created using wingetcreate 0.5.0.1 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.1.0.schema.json -PackageIdentifier: Suwayomi.Tachidesk-Server +PackageIdentifier: Suwayomi.Suwayomi-Server PackageVersion: 0.6.2 MinimumOSVersion: 10.0.0.0 Scope: machine diff --git a/manifests/s/Suwayomi/Tachidesk-Server/0.6.2/Suwayomi.Tachidesk-Server.locale.en-US.yaml b/manifests/s/Suwayomi/Suwayomi-Server/0.6.2/Suwayomi.Suwayomi-Server.locale.en-US.yaml similarity index 95% rename from manifests/s/Suwayomi/Tachidesk-Server/0.6.2/Suwayomi.Tachidesk-Server.locale.en-US.yaml rename to manifests/s/Suwayomi/Suwayomi-Server/0.6.2/Suwayomi.Suwayomi-Server.locale.en-US.yaml index 2ff4c828087bf..5678041423ee8 100644 --- a/manifests/s/Suwayomi/Tachidesk-Server/0.6.2/Suwayomi.Tachidesk-Server.locale.en-US.yaml +++ b/manifests/s/Suwayomi/Suwayomi-Server/0.6.2/Suwayomi.Suwayomi-Server.locale.en-US.yaml @@ -1,7 +1,7 @@ # Created using wingetcreate 0.5.0.1 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.1.0.schema.json -PackageIdentifier: Suwayomi.Tachidesk-Server +PackageIdentifier: Suwayomi.Suwayomi-Server PackageVersion: 0.6.2 PackageLocale: en-US Publisher: Suwayomi diff --git a/manifests/s/Suwayomi/Tachidesk-Server/0.6.2/Suwayomi.Tachidesk-Server.yaml b/manifests/s/Suwayomi/Suwayomi-Server/0.6.2/Suwayomi.Suwayomi-Server.yaml similarity index 82% rename from manifests/s/Suwayomi/Tachidesk-Server/0.6.2/Suwayomi.Tachidesk-Server.yaml rename to manifests/s/Suwayomi/Suwayomi-Server/0.6.2/Suwayomi.Suwayomi-Server.yaml index b3fde6f092e5e..20c3984b4bc30 100644 --- a/manifests/s/Suwayomi/Tachidesk-Server/0.6.2/Suwayomi.Tachidesk-Server.yaml +++ b/manifests/s/Suwayomi/Suwayomi-Server/0.6.2/Suwayomi.Suwayomi-Server.yaml @@ -1,7 +1,7 @@ # Created using wingetcreate 0.5.0.1 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.1.0.schema.json -PackageIdentifier: Suwayomi.Tachidesk-Server +PackageIdentifier: Suwayomi.Suwayomi-Server PackageVersion: 0.6.2 DefaultLocale: en-US ManifestType: version diff --git a/manifests/s/Suwayomi/Tachidesk-Server/0.6.3/Suwayomi.Tachidesk-Server.installer.yaml b/manifests/s/Suwayomi/Suwayomi-Server/0.6.3/Suwayomi.Suwayomi-Server.installer.yaml similarity index 93% rename from manifests/s/Suwayomi/Tachidesk-Server/0.6.3/Suwayomi.Tachidesk-Server.installer.yaml rename to manifests/s/Suwayomi/Suwayomi-Server/0.6.3/Suwayomi.Suwayomi-Server.installer.yaml index 95eb213716290..584d443b46a8c 100644 --- a/manifests/s/Suwayomi/Tachidesk-Server/0.6.3/Suwayomi.Tachidesk-Server.installer.yaml +++ b/manifests/s/Suwayomi/Suwayomi-Server/0.6.3/Suwayomi.Suwayomi-Server.installer.yaml @@ -1,7 +1,7 @@ # Created using wingetcreate 1.0.4.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.1.0.schema.json -PackageIdentifier: Suwayomi.Tachidesk-Server +PackageIdentifier: Suwayomi.Suwayomi-Server PackageVersion: 0.6.3 InstallerLocale: en-US MinimumOSVersion: 10.0.0.0 @@ -20,4 +20,3 @@ Installers: ManifestType: installer ManifestVersion: 1.1.0 ReleaseDate: 2022-05-11 - diff --git a/manifests/s/Suwayomi/Tachidesk-Server/0.6.3/Suwayomi.Tachidesk-Server.locale.en-US.yaml b/manifests/s/Suwayomi/Suwayomi-Server/0.6.3/Suwayomi.Suwayomi-Server.locale.en-US.yaml similarity index 97% rename from manifests/s/Suwayomi/Tachidesk-Server/0.6.3/Suwayomi.Tachidesk-Server.locale.en-US.yaml rename to manifests/s/Suwayomi/Suwayomi-Server/0.6.3/Suwayomi.Suwayomi-Server.locale.en-US.yaml index a30735ca75cf5..31bd3c98fe8cd 100644 --- a/manifests/s/Suwayomi/Tachidesk-Server/0.6.3/Suwayomi.Tachidesk-Server.locale.en-US.yaml +++ b/manifests/s/Suwayomi/Suwayomi-Server/0.6.3/Suwayomi.Suwayomi-Server.locale.en-US.yaml @@ -1,7 +1,7 @@ # Created using wingetcreate 1.0.4.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.1.0.schema.json -PackageIdentifier: Suwayomi.Tachidesk-Server +PackageIdentifier: Suwayomi.Suwayomi-Server PackageVersion: 0.6.3 PackageLocale: en-US Publisher: Suwayomi @@ -39,4 +39,3 @@ ReleaseNotes: |- ReleaseNotesUrl: https://github.com/Suwayomi/Tachidesk-Server/releases/tag/v0.6.3 ManifestType: defaultLocale ManifestVersion: 1.1.0 - diff --git a/manifests/s/Suwayomi/Tachidesk-Server/0.6.3/Suwayomi.Tachidesk-Server.yaml b/manifests/s/Suwayomi/Suwayomi-Server/0.6.3/Suwayomi.Suwayomi-Server.yaml similarity index 82% rename from manifests/s/Suwayomi/Tachidesk-Server/0.6.3/Suwayomi.Tachidesk-Server.yaml rename to manifests/s/Suwayomi/Suwayomi-Server/0.6.3/Suwayomi.Suwayomi-Server.yaml index 51b418804db3c..f08af28a05b29 100644 --- a/manifests/s/Suwayomi/Tachidesk-Server/0.6.3/Suwayomi.Tachidesk-Server.yaml +++ b/manifests/s/Suwayomi/Suwayomi-Server/0.6.3/Suwayomi.Suwayomi-Server.yaml @@ -1,9 +1,8 @@ # Created using wingetcreate 1.0.4.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.1.0.schema.json -PackageIdentifier: Suwayomi.Tachidesk-Server +PackageIdentifier: Suwayomi.Suwayomi-Server PackageVersion: 0.6.3 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.1.0 - diff --git a/manifests/s/Suwayomi/Tachidesk-Server/0.7.0/Suwayomi.Tachidesk-Server.installer.yaml b/manifests/s/Suwayomi/Suwayomi-Server/0.7.0/Suwayomi.Suwayomi-Server.installer.yaml similarity index 91% rename from manifests/s/Suwayomi/Tachidesk-Server/0.7.0/Suwayomi.Tachidesk-Server.installer.yaml rename to manifests/s/Suwayomi/Suwayomi-Server/0.7.0/Suwayomi.Suwayomi-Server.installer.yaml index c49619e15c01a..9337722c66049 100644 --- a/manifests/s/Suwayomi/Tachidesk-Server/0.7.0/Suwayomi.Tachidesk-Server.installer.yaml +++ b/manifests/s/Suwayomi/Suwayomi-Server/0.7.0/Suwayomi.Suwayomi-Server.installer.yaml @@ -1,23 +1,23 @@ -# Created with Komac v1.6.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: Suwayomi.Tachidesk-Server -PackageVersion: 0.7.0 -InstallerLocale: en-US -InstallerType: msi -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: uninstallPrevious -ReleaseDate: 2023-02-12 -AppsAndFeaturesEntries: -- UpgradeCode: '{*}' -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/Suwayomi/Tachidesk-Server/releases/download/v0.7.0/Tachidesk-Server-v0.7.0-r1197-windows-x64.msi - InstallerSha256: 8A247701E4C5AE703C1677268160F519237B787D341463BDCFDF0107E9ACD2CF - ProductCode: '{C56EB073-3263-4979-A3FA-70CF91043028}' -ManifestType: installer -ManifestVersion: 1.4.0 +# Created with Komac v1.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json + +PackageIdentifier: Suwayomi.Suwayomi-Server +PackageVersion: 0.7.0 +InstallerLocale: en-US +InstallerType: msi +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2023-02-12 +AppsAndFeaturesEntries: +- UpgradeCode: '{*}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Suwayomi/Tachidesk-Server/releases/download/v0.7.0/Tachidesk-Server-v0.7.0-r1197-windows-x64.msi + InstallerSha256: 8A247701E4C5AE703C1677268160F519237B787D341463BDCFDF0107E9ACD2CF + ProductCode: '{C56EB073-3263-4979-A3FA-70CF91043028}' +ManifestType: installer +ManifestVersion: 1.4.0 diff --git a/manifests/s/Suwayomi/Tachidesk-Server/0.7.0/Suwayomi.Tachidesk-Server.locale.en-US.yaml b/manifests/s/Suwayomi/Suwayomi-Server/0.7.0/Suwayomi.Suwayomi-Server.locale.en-US.yaml similarity index 93% rename from manifests/s/Suwayomi/Tachidesk-Server/0.7.0/Suwayomi.Tachidesk-Server.locale.en-US.yaml rename to manifests/s/Suwayomi/Suwayomi-Server/0.7.0/Suwayomi.Suwayomi-Server.locale.en-US.yaml index 1e8c44e5de13e..a227ca19ded13 100644 --- a/manifests/s/Suwayomi/Tachidesk-Server/0.7.0/Suwayomi.Tachidesk-Server.locale.en-US.yaml +++ b/manifests/s/Suwayomi/Suwayomi-Server/0.7.0/Suwayomi.Suwayomi-Server.locale.en-US.yaml @@ -1,27 +1,27 @@ -# Created with Komac v1.6.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: Suwayomi.Tachidesk-Server -PackageVersion: 0.7.0 -PackageLocale: en-US -Publisher: Suwayomi -PublisherUrl: https://github.com/Suwayomi -PublisherSupportUrl: https://github.com/Suwayomi/Tachidesk-Server/issues -PackageName: Tachidesk Server -PackageUrl: https://github.com/Suwayomi/Tachidesk-Server -License: MPL-2.0 -LicenseUrl: https://github.com/Suwayomi/Tachidesk-Server/blob/master/LICENSE -ShortDescription: A free and open source manga reader that runs extensions built for Tachiyomi. -Description: |- - Tachidesk is free and open source manga reader that runs extensions built for Tachiyomi. - Tachidesk Server ships with Tachidesk-WebUI, the web/ElectronJS front-end for Tachidesk. -Moniker: tachidesk-server -Tags: -- foss -- manga-downloader -- manga-reader -- open-source -- tachiyomi -ReleaseNotesUrl: https://github.com/Suwayomi/Tachidesk-Server/releases/tag/v0.7.0 -ManifestType: defaultLocale -ManifestVersion: 1.4.0 +# Created with Komac v1.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json + +PackageIdentifier: Suwayomi.Suwayomi-Server +PackageVersion: 0.7.0 +PackageLocale: en-US +Publisher: Suwayomi +PublisherUrl: https://github.com/Suwayomi +PublisherSupportUrl: https://github.com/Suwayomi/Tachidesk-Server/issues +PackageName: Tachidesk Server +PackageUrl: https://github.com/Suwayomi/Tachidesk-Server +License: MPL-2.0 +LicenseUrl: https://github.com/Suwayomi/Tachidesk-Server/blob/master/LICENSE +ShortDescription: A free and open source manga reader that runs extensions built for Tachiyomi. +Description: |- + Tachidesk is free and open source manga reader that runs extensions built for Tachiyomi. + Tachidesk Server ships with Tachidesk-WebUI, the web/ElectronJS front-end for Tachidesk. +Moniker: tachidesk-server +Tags: +- foss +- manga-downloader +- manga-reader +- open-source +- tachiyomi +ReleaseNotesUrl: https://github.com/Suwayomi/Tachidesk-Server/releases/tag/v0.7.0 +ManifestType: defaultLocale +ManifestVersion: 1.4.0 diff --git a/manifests/s/Suwayomi/Tachidesk-Server/0.7.0/Suwayomi.Tachidesk-Server.yaml b/manifests/s/Suwayomi/Suwayomi-Server/0.7.0/Suwayomi.Suwayomi-Server.yaml similarity index 79% rename from manifests/s/Suwayomi/Tachidesk-Server/0.7.0/Suwayomi.Tachidesk-Server.yaml rename to manifests/s/Suwayomi/Suwayomi-Server/0.7.0/Suwayomi.Suwayomi-Server.yaml index a120925982023..60046f887c0e4 100644 --- a/manifests/s/Suwayomi/Tachidesk-Server/0.7.0/Suwayomi.Tachidesk-Server.yaml +++ b/manifests/s/Suwayomi/Suwayomi-Server/0.7.0/Suwayomi.Suwayomi-Server.yaml @@ -1,8 +1,8 @@ -# Created with Komac v1.6.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: Suwayomi.Tachidesk-Server -PackageVersion: 0.7.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 +# Created with Komac v1.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json + +PackageIdentifier: Suwayomi.Suwayomi-Server +PackageVersion: 0.7.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.4.0 diff --git a/manifests/s/Suwayomi/Tachidesk-Server/1.0.0/Suwayomi.Tachidesk-Server.installer.yaml b/manifests/s/Suwayomi/Suwayomi-Server/1.0.0/Suwayomi.Suwayomi-Server.installer.yaml similarity index 92% rename from manifests/s/Suwayomi/Tachidesk-Server/1.0.0/Suwayomi.Tachidesk-Server.installer.yaml rename to manifests/s/Suwayomi/Suwayomi-Server/1.0.0/Suwayomi.Suwayomi-Server.installer.yaml index 43e523080149e..cc5a4c43f8361 100644 --- a/manifests/s/Suwayomi/Tachidesk-Server/1.0.0/Suwayomi.Tachidesk-Server.installer.yaml +++ b/manifests/s/Suwayomi/Suwayomi-Server/1.0.0/Suwayomi.Suwayomi-Server.installer.yaml @@ -1,27 +1,27 @@ -# Created with komac v2.12.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Suwayomi.Tachidesk-Server -PackageVersion: 1.0.0 -InstallerLocale: en-US -InstallerType: msi -Scope: user -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: uninstallPrevious -ProductCode: '{A537FDF1-0F82-4C33-A33A-AC50C320886A}' -ReleaseDate: 2024-02-23 -AppsAndFeaturesEntries: -- DisplayName: Suwayomi Server - ProductCode: '{A537FDF1-0F82-4C33-A33A-AC50C320886A}' - UpgradeCode: '{*}' -InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\Suwayomi-Server' -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/Suwayomi/Suwayomi-Server/releases/download/v1.0.0/Suwayomi-Server-v1.0.0-r1498-windows-x64.msi - InstallerSha256: 67CA65DCC3524A047DC41A4BCBF469DAE624A084C7802D4276516D0F1824E4D3 -ManifestType: installer -ManifestVersion: 1.10.0 +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Suwayomi.Suwayomi-Server +PackageVersion: 1.0.0 +InstallerLocale: en-US +InstallerType: msi +Scope: user +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: uninstallPrevious +ProductCode: '{A537FDF1-0F82-4C33-A33A-AC50C320886A}' +ReleaseDate: 2024-02-23 +AppsAndFeaturesEntries: +- DisplayName: Suwayomi Server + ProductCode: '{A537FDF1-0F82-4C33-A33A-AC50C320886A}' + UpgradeCode: '{*}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Suwayomi-Server' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Suwayomi/Suwayomi-Server/releases/download/v1.0.0/Suwayomi-Server-v1.0.0-r1498-windows-x64.msi + InstallerSha256: 67CA65DCC3524A047DC41A4BCBF469DAE624A084C7802D4276516D0F1824E4D3 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/s/Suwayomi/Tachidesk-Server/1.0.0/Suwayomi.Tachidesk-Server.locale.en-US.yaml b/manifests/s/Suwayomi/Suwayomi-Server/1.0.0/Suwayomi.Suwayomi-Server.locale.en-US.yaml similarity index 96% rename from manifests/s/Suwayomi/Tachidesk-Server/1.0.0/Suwayomi.Tachidesk-Server.locale.en-US.yaml rename to manifests/s/Suwayomi/Suwayomi-Server/1.0.0/Suwayomi.Suwayomi-Server.locale.en-US.yaml index 2323789f332b9..25a49a07b13fe 100644 --- a/manifests/s/Suwayomi/Tachidesk-Server/1.0.0/Suwayomi.Tachidesk-Server.locale.en-US.yaml +++ b/manifests/s/Suwayomi/Suwayomi-Server/1.0.0/Suwayomi.Suwayomi-Server.locale.en-US.yaml @@ -1,52 +1,52 @@ -# Created with komac v2.12.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Suwayomi.Tachidesk-Server -PackageVersion: 1.0.0 -PackageLocale: en-US -Publisher: Suwayomi -PublisherUrl: https://github.com/Suwayomi -PublisherSupportUrl: https://github.com/Suwayomi/Tachidesk-Server/issues -PackageName: Tachidesk Server -PackageUrl: https://github.com/Suwayomi/Tachidesk-Server -License: MPL-2.0 -LicenseUrl: https://github.com/Suwayomi/Suwayomi-Server/blob/HEAD/LICENSE -ShortDescription: A free and open source manga reader that runs extensions built for Tachiyomi. -Description: |- - Tachidesk is free and open source manga reader that runs extensions built for Tachiyomi. - Tachidesk Server ships with Tachidesk-WebUI, the web/ElectronJS front-end for Tachidesk. -Moniker: tachidesk-server -Tags: -- foss -- manga-downloader -- manga-reader -- open-source -- tachiyomi -ReleaseNotes: |- - Server: v1.0.0 + WebUI: r1409 - We've done a lot since our last release over a year ago. Checkout the CHANGELOG.md for the full list of changes. - GraphQL API - We have redone our whole API in GraphQL. We are excited to get this out there so more Suwayomi clients like JUI and Sorayomi can use it! GraphQL is a great technology and provides much more flexibility then our previous REST API. - Rename to Suwayomi - We've had the rename in the works for a while, we wanted to have a better branding. Tachidesk doesn't actually make sense, its a mix of 2 languages, and Tachi means standing. We ended up deciding on Suwayomi, which is a shorthand for Suwariyomi(sitting reading). - New Launcher for Suwayomi - We needed a better experience when launching the application, a launcher was a great idea. We've got all the settings available in the launcher so you can configure everything you need before launching! - More Changes! - - Automatic WebUI Updates - - Preserve download queue through server restarts - - Improve compatability with Android extensions - - Add support for ComicInfo creation and reading - - Support changing settings with WebUI and other clients - - Support more SOCKS proxy settings - - Fix support for Oracle JRE - - Performance improvements - - Partial Tracking support - - Support Custom Repos - - FlareSolverr(Cloudflare Bypass) support - - And many more fixes and features, this was a big release - - WebUI changes: https://github.com/Suwayomi/Suwayomi-WebUI/releases/tag/v1.0.0 - Contributors: - @Syer10, @AriaMoradi, @schroda, @chancez, @Mercenar, @Robonau, @tachimanga, @brianmakesthings, @alexandrejournet, @aless2003, @vuhe, @MangaCrushTeam, @martinek, @akabhirav, @DattatreyaReddy -ReleaseNotesUrl: https://github.com/Suwayomi/Suwayomi-Server/releases/tag/v1.0.0 -ManifestType: defaultLocale -ManifestVersion: 1.10.0 +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Suwayomi.Suwayomi-Server +PackageVersion: 1.0.0 +PackageLocale: en-US +Publisher: Suwayomi +PublisherUrl: https://github.com/Suwayomi +PublisherSupportUrl: https://github.com/Suwayomi/Tachidesk-Server/issues +PackageName: Tachidesk Server +PackageUrl: https://github.com/Suwayomi/Tachidesk-Server +License: MPL-2.0 +LicenseUrl: https://github.com/Suwayomi/Suwayomi-Server/blob/HEAD/LICENSE +ShortDescription: A free and open source manga reader that runs extensions built for Tachiyomi. +Description: |- + Tachidesk is free and open source manga reader that runs extensions built for Tachiyomi. + Tachidesk Server ships with Tachidesk-WebUI, the web/ElectronJS front-end for Tachidesk. +Moniker: tachidesk-server +Tags: +- foss +- manga-downloader +- manga-reader +- open-source +- tachiyomi +ReleaseNotes: |- + Server: v1.0.0 + WebUI: r1409 + We've done a lot since our last release over a year ago. Checkout the CHANGELOG.md for the full list of changes. + GraphQL API + We have redone our whole API in GraphQL. We are excited to get this out there so more Suwayomi clients like JUI and Sorayomi can use it! GraphQL is a great technology and provides much more flexibility then our previous REST API. + Rename to Suwayomi + We've had the rename in the works for a while, we wanted to have a better branding. Tachidesk doesn't actually make sense, its a mix of 2 languages, and Tachi means standing. We ended up deciding on Suwayomi, which is a shorthand for Suwariyomi(sitting reading). + New Launcher for Suwayomi + We needed a better experience when launching the application, a launcher was a great idea. We've got all the settings available in the launcher so you can configure everything you need before launching! + More Changes! + - Automatic WebUI Updates + - Preserve download queue through server restarts + - Improve compatability with Android extensions + - Add support for ComicInfo creation and reading + - Support changing settings with WebUI and other clients + - Support more SOCKS proxy settings + - Fix support for Oracle JRE + - Performance improvements + - Partial Tracking support + - Support Custom Repos + - FlareSolverr(Cloudflare Bypass) support + - And many more fixes and features, this was a big release + - WebUI changes: https://github.com/Suwayomi/Suwayomi-WebUI/releases/tag/v1.0.0 + Contributors: + @Syer10, @AriaMoradi, @schroda, @chancez, @Mercenar, @Robonau, @tachimanga, @brianmakesthings, @alexandrejournet, @aless2003, @vuhe, @MangaCrushTeam, @martinek, @akabhirav, @DattatreyaReddy +ReleaseNotesUrl: https://github.com/Suwayomi/Suwayomi-Server/releases/tag/v1.0.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/s/Suwayomi/Tachidesk-Server/1.0.0/Suwayomi.Tachidesk-Server.yaml b/manifests/s/Suwayomi/Suwayomi-Server/1.0.0/Suwayomi.Suwayomi-Server.yaml similarity index 79% rename from manifests/s/Suwayomi/Tachidesk-Server/1.0.0/Suwayomi.Tachidesk-Server.yaml rename to manifests/s/Suwayomi/Suwayomi-Server/1.0.0/Suwayomi.Suwayomi-Server.yaml index 89da5e29aa446..aa63f3b1be7c4 100644 --- a/manifests/s/Suwayomi/Tachidesk-Server/1.0.0/Suwayomi.Tachidesk-Server.yaml +++ b/manifests/s/Suwayomi/Suwayomi-Server/1.0.0/Suwayomi.Suwayomi-Server.yaml @@ -1,8 +1,8 @@ -# Created with komac v2.12.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: Suwayomi.Tachidesk-Server -PackageVersion: 1.0.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Suwayomi.Suwayomi-Server +PackageVersion: 1.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/s/Suwayomi/Tachidesk-Server/v2.0.1727/Suwayomi.Tachidesk-Server.installer.yaml b/manifests/s/Suwayomi/Suwayomi-Server/v2.0.1727/Suwayomi.Suwayomi-Server.installer.yaml similarity index 92% rename from manifests/s/Suwayomi/Tachidesk-Server/v2.0.1727/Suwayomi.Tachidesk-Server.installer.yaml rename to manifests/s/Suwayomi/Suwayomi-Server/v2.0.1727/Suwayomi.Suwayomi-Server.installer.yaml index 0919f10eaa132..c5b5abf8b0311 100644 --- a/manifests/s/Suwayomi/Tachidesk-Server/v2.0.1727/Suwayomi.Tachidesk-Server.installer.yaml +++ b/manifests/s/Suwayomi/Suwayomi-Server/v2.0.1727/Suwayomi.Suwayomi-Server.installer.yaml @@ -1,27 +1,27 @@ -# Created with WinGet Releaser using komac v2.12.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Suwayomi.Tachidesk-Server -PackageVersion: v2.0.1727 -InstallerLocale: en-US -InstallerType: wix -Scope: user -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: uninstallPrevious -ProductCode: '{DB1C0795-D1E7-4FF1-B9C6-1BA43194DACB}' -ReleaseDate: 2025-04-21 -AppsAndFeaturesEntries: -- DisplayName: Suwayomi Server - ProductCode: '{DB1C0795-D1E7-4FF1-B9C6-1BA43194DACB}' - UpgradeCode: '{174c8f36-0bec-4585-9ddd-469c3d889dc1}' -InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\Suwayomi-Server' -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/Suwayomi/Suwayomi-Server/releases/download/v2.0.1727/Suwayomi-Server-v2.0.1727-windows-x64.msi - InstallerSha256: 6BCCBA648A868C021EEEF39044D6757BD47E5AC529012720729D248B3FC1500E -ManifestType: installer -ManifestVersion: 1.10.0 +# Created with WinGet Releaser using komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Suwayomi.Suwayomi-Server +PackageVersion: v2.0.1727 +InstallerLocale: en-US +InstallerType: wix +Scope: user +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: uninstallPrevious +ProductCode: '{DB1C0795-D1E7-4FF1-B9C6-1BA43194DACB}' +ReleaseDate: 2025-04-21 +AppsAndFeaturesEntries: +- DisplayName: Suwayomi Server + ProductCode: '{DB1C0795-D1E7-4FF1-B9C6-1BA43194DACB}' + UpgradeCode: '{174c8f36-0bec-4585-9ddd-469c3d889dc1}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Suwayomi-Server' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Suwayomi/Suwayomi-Server/releases/download/v2.0.1727/Suwayomi-Server-v2.0.1727-windows-x64.msi + InstallerSha256: 6BCCBA648A868C021EEEF39044D6757BD47E5AC529012720729D248B3FC1500E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/s/Suwayomi/Tachidesk-Server/v2.0.1727/Suwayomi.Tachidesk-Server.locale.en-US.yaml b/manifests/s/Suwayomi/Suwayomi-Server/v2.0.1727/Suwayomi.Suwayomi-Server.locale.en-US.yaml similarity index 96% rename from manifests/s/Suwayomi/Tachidesk-Server/v2.0.1727/Suwayomi.Tachidesk-Server.locale.en-US.yaml rename to manifests/s/Suwayomi/Suwayomi-Server/v2.0.1727/Suwayomi.Suwayomi-Server.locale.en-US.yaml index b84c6078067a3..0192824f32933 100644 --- a/manifests/s/Suwayomi/Tachidesk-Server/v2.0.1727/Suwayomi.Tachidesk-Server.locale.en-US.yaml +++ b/manifests/s/Suwayomi/Suwayomi-Server/v2.0.1727/Suwayomi.Suwayomi-Server.locale.en-US.yaml @@ -1,47 +1,47 @@ -# Created with WinGet Releaser using komac v2.12.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Suwayomi.Tachidesk-Server -PackageVersion: v2.0.1727 -PackageLocale: en-US -Publisher: Suwayomi -PublisherUrl: https://github.com/Suwayomi -PublisherSupportUrl: https://github.com/Suwayomi/Tachidesk-Server/issues -PackageName: Tachidesk Server -PackageUrl: https://github.com/Suwayomi/Tachidesk-Server -License: MPL-2.0 -LicenseUrl: https://github.com/Suwayomi/Suwayomi-Server/blob/HEAD/LICENSE -ShortDescription: A free and open source manga reader that runs extensions built for Tachiyomi. -Description: |- - Tachidesk is free and open source manga reader that runs extensions built for Tachiyomi. - Tachidesk Server ships with Tachidesk-WebUI, the web/ElectronJS front-end for Tachidesk. -Moniker: tachidesk-server -Tags: -- foss -- manga-downloader -- manga-reader -- open-source -- tachiyomi -ReleaseNotes: |- - Caution - If you previously used the MSI Installer, uninstall all Suwayomi-Server versions you have installed before installing the latest release! All your data will be untouched. - Update to Java 21 - This has been a long time coming! This release we focused on getting the server more stable and improving performance. With this we decided to finally move past Java 8 and into the future! We will continue updating to the latest Java LTS release from here on out. Make sure to update your runtimes! - Add OPDS API - We have added API endpoints for OPDS and OPDS-PSE! With this your favourite mobile book readers will be able to download and read manga directly from your server! A little tip, it works best if you pre-download the chapters on Suwayomi-Server! - More Tracking! - We have added support for the Bangumi and Kitsu Trackers. We hope you enjoy them, there is more to come later! - Changing Version Scheme - We have decided to move to a major.minor.revision versioning scheme to improve compatibility on a few platforms between Stable and Preview. This shouldn't have any impact on how you use the app though, you will receive update notifications based on if you have preview or stable installed! - More Changes! - - Fix MSI Installer - - Optimized Backup Import - - Improve JS Support - - Optimize included JRE - - And many more fixes and features - - WebUI changes: https://github.com/Suwayomi/Suwayomi-WebUI/releases/tag/v1.5.1 - Contributors: - @schroda, @kaaass, @Syer10, @renovate[bot], @shirishsaxena, @showyee, @cpiber, @zeedif, @Robonau, @dejavui, @Belphemur, @AeonLucid -ReleaseNotesUrl: https://github.com/Suwayomi/Suwayomi-Server/releases/tag/v2.0.1727 -ManifestType: defaultLocale -ManifestVersion: 1.10.0 +# Created with WinGet Releaser using komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Suwayomi.Suwayomi-Server +PackageVersion: v2.0.1727 +PackageLocale: en-US +Publisher: Suwayomi +PublisherUrl: https://github.com/Suwayomi +PublisherSupportUrl: https://github.com/Suwayomi/Tachidesk-Server/issues +PackageName: Tachidesk Server +PackageUrl: https://github.com/Suwayomi/Tachidesk-Server +License: MPL-2.0 +LicenseUrl: https://github.com/Suwayomi/Suwayomi-Server/blob/HEAD/LICENSE +ShortDescription: A free and open source manga reader that runs extensions built for Tachiyomi. +Description: |- + Tachidesk is free and open source manga reader that runs extensions built for Tachiyomi. + Tachidesk Server ships with Tachidesk-WebUI, the web/ElectronJS front-end for Tachidesk. +Moniker: tachidesk-server +Tags: +- foss +- manga-downloader +- manga-reader +- open-source +- tachiyomi +ReleaseNotes: |- + Caution + If you previously used the MSI Installer, uninstall all Suwayomi-Server versions you have installed before installing the latest release! All your data will be untouched. + Update to Java 21 + This has been a long time coming! This release we focused on getting the server more stable and improving performance. With this we decided to finally move past Java 8 and into the future! We will continue updating to the latest Java LTS release from here on out. Make sure to update your runtimes! + Add OPDS API + We have added API endpoints for OPDS and OPDS-PSE! With this your favourite mobile book readers will be able to download and read manga directly from your server! A little tip, it works best if you pre-download the chapters on Suwayomi-Server! + More Tracking! + We have added support for the Bangumi and Kitsu Trackers. We hope you enjoy them, there is more to come later! + Changing Version Scheme + We have decided to move to a major.minor.revision versioning scheme to improve compatibility on a few platforms between Stable and Preview. This shouldn't have any impact on how you use the app though, you will receive update notifications based on if you have preview or stable installed! + More Changes! + - Fix MSI Installer + - Optimized Backup Import + - Improve JS Support + - Optimize included JRE + - And many more fixes and features + - WebUI changes: https://github.com/Suwayomi/Suwayomi-WebUI/releases/tag/v1.5.1 + Contributors: + @schroda, @kaaass, @Syer10, @renovate[bot], @shirishsaxena, @showyee, @cpiber, @zeedif, @Robonau, @dejavui, @Belphemur, @AeonLucid +ReleaseNotesUrl: https://github.com/Suwayomi/Suwayomi-Server/releases/tag/v2.0.1727 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/s/Suwayomi/Tachidesk-Server/v2.0.1727/Suwayomi.Tachidesk-Server.yaml b/manifests/s/Suwayomi/Suwayomi-Server/v2.0.1727/Suwayomi.Suwayomi-Server.yaml similarity index 81% rename from manifests/s/Suwayomi/Tachidesk-Server/v2.0.1727/Suwayomi.Tachidesk-Server.yaml rename to manifests/s/Suwayomi/Suwayomi-Server/v2.0.1727/Suwayomi.Suwayomi-Server.yaml index 69735919847ea..c23e7b4924f19 100644 --- a/manifests/s/Suwayomi/Tachidesk-Server/v2.0.1727/Suwayomi.Tachidesk-Server.yaml +++ b/manifests/s/Suwayomi/Suwayomi-Server/v2.0.1727/Suwayomi.Suwayomi-Server.yaml @@ -1,8 +1,8 @@ -# Created with WinGet Releaser using komac v2.12.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: Suwayomi.Tachidesk-Server -PackageVersion: v2.0.1727 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 +# Created with WinGet Releaser using komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Suwayomi.Suwayomi-Server +PackageVersion: v2.0.1727 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/t/Telegram/TelegramDesktop/5.16.3/Telegram.TelegramDesktop.installer.yaml b/manifests/t/Telegram/TelegramDesktop/5.16.3/Telegram.TelegramDesktop.installer.yaml new file mode 100644 index 0000000000000..b58cfa7f0da80 --- /dev/null +++ b/manifests/t/Telegram/TelegramDesktop/5.16.3/Telegram.TelegramDesktop.installer.yaml @@ -0,0 +1,56 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Telegram.TelegramDesktop +PackageVersion: 5.16.3 +InstallModes: +- interactive +- silent +- silentWithProgress +Protocols: +- tg +Installers: +- Architecture: x64 + InstallerType: inno + Scope: user + InstallerUrl: https://td.telegram.org/tx64/tsetup-x64.5.16.3.exe + InstallerSha256: 85DAEAB42013B1F1FC65974E93310238BFF1214D9CF8C6F9E45D3B21104D092F + UpgradeBehavior: install +- Architecture: x86 + InstallerType: inno + Scope: user + InstallerUrl: https://td.telegram.org/tsetup/tsetup.5.16.3.exe + InstallerSha256: 83CC885FB73657B11CDE7A8313B45AD709466164FD41FC68CD79D26E203B2076 + UpgradeBehavior: install +- Architecture: arm64 + InstallerType: inno + Scope: user + InstallerUrl: https://td.telegram.org/tarm64/tsetup-arm64.5.16.3.exe + InstallerSha256: 9EB9E1376947A267767411EC946632EE08D2EBDBAA4F572D0CF907F3C10BB789 + UpgradeBehavior: install +- Architecture: x64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: Telegram\Telegram.exe + PortableCommandAlias: Telegram.exe + InstallerUrl: https://td.telegram.org/tx64/tportable-x64.5.16.3.zip + InstallerSha256: 7203EDE567C098585F62C5FAD5C7A52A93EB39E6E5E645110A71795C13DF1E8A +- Architecture: x86 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: Telegram\Telegram.exe + PortableCommandAlias: Telegram.exe + InstallerUrl: https://td.telegram.org/tsetup/tportable.5.16.3.zip + InstallerSha256: 1EC5ECCAF7DE7E6CDADC31D5E582F4FB38C9AC2F2E86791ABC1B69A041A50F8A +- Architecture: arm64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: Telegram\Telegram.exe + PortableCommandAlias: Telegram.exe + InstallerUrl: https://td.telegram.org/tarm64/tportable-arm64.5.16.3.zip + InstallerSha256: 04E728701CCC35F6D3701E8620B6619DFAD833D8A177B3AFF6962C4FD7E96219 +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2025-07-08 diff --git a/manifests/t/Telegram/TelegramDesktop/5.16.3/Telegram.TelegramDesktop.locale.en-US.yaml b/manifests/t/Telegram/TelegramDesktop/5.16.3/Telegram.TelegramDesktop.locale.en-US.yaml new file mode 100644 index 0000000000000..c9ba40ce5a6f4 --- /dev/null +++ b/manifests/t/Telegram/TelegramDesktop/5.16.3/Telegram.TelegramDesktop.locale.en-US.yaml @@ -0,0 +1,32 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Telegram.TelegramDesktop +PackageVersion: 5.16.3 +PackageLocale: en-US +Publisher: Telegram FZ-LLC +PublisherUrl: https://telegram.org +PublisherSupportUrl: https://telegram.org/support +PrivacyUrl: https://telegram.org/privacy +Author: Telegram FZ-LLC +PackageName: Telegram Desktop +PackageUrl: https://desktop.telegram.org +License: GNU-3.0-only +LicenseUrl: https://raw.githubusercontent.com/telegramdesktop/tdesktop/master/LICENSE +Copyright: Copyright (c) 2014-2024 The Telegram Desktop Authors. +CopyrightUrl: https://raw.githubusercontent.com/telegramdesktop/tdesktop/master/LEGAL +ShortDescription: Telegram is a cloud-based mobile and desktop messaging app with a focus on security and speed. +Moniker: telegram +Tags: +- chat +- messaging +- messenger +ReleaseNotes: |- + - Allow removing / charging fee in channel direct messages. + - Don't offer creating checklists in channels. + - Support author channel in gifts. +ReleaseNotesUrl: https://github.com/telegramdesktop/tdesktop/releases/tag/v5.16.3 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/telegramdesktop/tdesktop/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/t/Telegram/TelegramDesktop/5.16.3/Telegram.TelegramDesktop.yaml b/manifests/t/Telegram/TelegramDesktop/5.16.3/Telegram.TelegramDesktop.yaml new file mode 100644 index 0000000000000..8a96c0bc6b72c --- /dev/null +++ b/manifests/t/Telegram/TelegramDesktop/5.16.3/Telegram.TelegramDesktop.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Telegram.TelegramDesktop +PackageVersion: 5.16.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/t/Tencent/Yuanbao/2.29.0/Tencent.Yuanbao.installer.yaml b/manifests/t/Tencent/Yuanbao/2.29.0/Tencent.Yuanbao.installer.yaml index 70d9a4397bd7b..a312e07e9d0bb 100644 --- a/manifests/t/Tencent/Yuanbao/2.29.0/Tencent.Yuanbao.installer.yaml +++ b/manifests/t/Tencent/Yuanbao/2.29.0/Tencent.Yuanbao.installer.yaml @@ -13,7 +13,7 @@ Dependencies: ProductCode: Yuanbao Installers: - Architecture: x64 - InstallerUrl: https://cdn-hybrid-prod.hunyuan.tencent.com/Desktop/official/7fa4c2ccb7fbd0ef65b2adb9d20597e1/yuanbao_2.29.0.640_x64.exe - InstallerSha256: E148134C51A2FE3B93F4F8C1556FE1120348AF45E14669BD681964E694355D2C + InstallerUrl: https://cdn-hybrid-prod.hunyuan.tencent.com/Desktop/official/a0730432c5d5cca7ddda73ad2aa9db28/yuanbao_2.29.0.647_x64.exe + InstallerSha256: 8BC95DD648871FFECE4FCDC530CFBF22AE4D35C2DA1EB475E8FDF0D90D3B9F07 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/t/TerryReese/MarcEdit/7.7.35/TerryReese.MarcEdit.installer.yaml b/manifests/t/TerryReese/MarcEdit/7.7.35/TerryReese.MarcEdit.installer.yaml index a27c25da12f69..69eeba2100dbf 100644 --- a/manifests/t/TerryReese/MarcEdit/7.7.35/TerryReese.MarcEdit.installer.yaml +++ b/manifests/t/TerryReese/MarcEdit/7.7.35/TerryReese.MarcEdit.installer.yaml @@ -1,22 +1,79 @@ -# Automatically updated by the winget bot at 2025/May/11 +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: TerryReese.MarcEdit PackageVersion: 7.7.35 -InstallerLocale: en-US -InstallerType: msi -ProductCode: '{0C92A078-D668-468C-B475-BA828C1C16CE}' -AppsAndFeaturesEntries: -- DisplayName: MarcEdit 7.7 - Publisher: Terry Reese - ProductCode: '{0C92A078-D668-468C-B475-BA828C1C16CE}' - UpgradeCode: '{47C3CFFD-ECF0-4DA2-B443-070A6A97C9F2}' -Dependencies: - PackageDependencies: - - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.8 +InstallerSwitches: + InstallLocation: APPDIR="" +FileExtensions: +- mrc +- mrk +ReleaseDate: 2025-05-10 Installers: - Architecture: x64 + InstallerType: exe # Advanced Installer + Scope: user + InstallerUrl: https://marcedit.reeset.net/software/marcedit75/MarcEdit_7_7_User_Install.exe + InstallerSha256: 58B60DA83DB2CE1B604ADA11676749B98A037D9C54E72025A328C026D18631BA + InstallModes: + - interactive + - silent + - silentWithProgress + InstallerSwitches: + Silent: /exenoui /quiet /norestart + SilentWithProgress: /exenoui /passive /norestart + 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 + ProductCode: MarcEdit 7.7 (User) 7.7.35 + AppsAndFeaturesEntries: + - DisplayName: MarcEdit 7.7 (User) User Installation (Self Contained) +- Architecture: x64 + InstallerType: msi # Advanced Installer + Scope: machine InstallerUrl: https://marcedit.reeset.net/software/marcedit75/MarcEdit_7_7_org_installer.msi InstallerSha256: 5C280EBAC1BC2BA0762AA4CF2CC5494C4F6B0020DBD20176185AA5259A8F16C2 + ProductCode: MarcEdit 7.7 7.7.35 + AppsAndFeaturesEntries: + - InstallerType: exe ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/t/TerryReese/MarcEdit/7.7.35/TerryReese.MarcEdit.locale.en-US.yaml b/manifests/t/TerryReese/MarcEdit/7.7.35/TerryReese.MarcEdit.locale.en-US.yaml index 8c131d5c29efb..ea1a41cf6d016 100644 --- a/manifests/t/TerryReese/MarcEdit/7.7.35/TerryReese.MarcEdit.locale.en-US.yaml +++ b/manifests/t/TerryReese/MarcEdit/7.7.35/TerryReese.MarcEdit.locale.en-US.yaml @@ -1,12 +1,63 @@ -# Automatically updated by the winget bot at 2025/May/11 +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: TerryReese.MarcEdit PackageVersion: 7.7.35 PackageLocale: en-US Publisher: Terry Reese +PublisherUrl: https://reeset.net/ +PublisherSupportUrl: https://marcedit.reeset.net/help +PrivacyUrl: https://marcedit.reeset.net/privacy-policy +Author: Terry Reese PackageName: MarcEdit +PackageUrl: https://marcedit.reeset.net/ License: Proprietary +LicenseUrl: https://marcedit.reeset.net/marcedit-end-user-license-agreement +Copyright: © 2025 MarcEdit Development +CopyrightUrl: https://marcedit.reeset.net/privacy-policy ShortDescription: MarcEdit presently includes a very rich feature set targeted at making metadata translation and editing easier for both the beginner and advanced users +Description: |- + In 1999, MarcEdit started out as a simple MARC=>plain text translation utility. Today, MarcEdit has become one of the more complete metadata edit suites available to librarians. While the name MarcEdit has become a bit of a misnomer over the years (as MarcEdit now edits so much more data than simply MARC records), the program has and will continue to evolve to meet the past, present, and future metadata needs of the library community. + MarcEdit presently includes a very rich feature set targeted at making metadata translation and editing easier for both the beginner and advanced users. These features include: + - MARC Editing: MarcEdit includes a MARC Breaker and Maker to move MARC data into a more friendly mnemonic file format. It includes a dedicated MARC Editor, that provides a number of global editing functions, the ability to edit MODS and MARCXML data (in a mnemonic format) and integrate data from other data sources like OCLC, etc. into a batch set of MARC data. + - Automatic Normalization Support: UTF8 data comes in many different normalizations — Libraries primarily utilize two. Depending on the ILS, incorrect or mixed normalizations can cause indexing and display issues. MarcEdit allows for automated data normalization. + - Metadata Translations: Includes built in translations for MARC to JSON, JSON to MARC, MARC to JSONLD, JSON to XML, BibFrame to MARC as well as multiple XSLT translations to convert between various Library and non-Library domain metadata frames to other metadata frameworks (and usually MARC). + - MarcEditor: The MarcEditor is MarcEdit’s built in metadata editor. It includes a number of global editing functions, full regular expression and UTF-8 support, as well as the ability to configure the editor to utilize any characterset supported by the operating system. Included functions: Globally Add/Delete Fields, Edit Subfields, Swap Field Data, Copy Field Data, Edit Indicators, Generate Call Numbers, Validate Records, Generate Reports, Find/Replace, Direct Integration with Supported ILS systems, Macro support, Task Support, Call Number Generation, automatic LC and FAST subject generation, automatic Link Data reconciliation, etc. + - Link Data Framework: Framework and tooling for supporting automatic data reconcillation + - BibFrame Workflows: Built-in workflows for moving data into and out of bibframe for editing. + - Clustering: MarcEdit supports the ability to cluster on fields or subfields and edit data in clusters. + - RDA Helper: The RDA Helper is both a stand alone and integrated tool that allows users to take a set of MARC data and automatically generate RDA specific data. The RDA data is derived from the source recordset using available control data, variable field data, and RDA specific assumptions. + - Delimited Text Translator: The Delimited Text Translator is a tool that allows users to translate data in Excel, Access, or any delimited format into MARC. + - Export as Tab Delimited: A tool that allows users to export their MARC data as delimited text. + - Harvest OAI Data: MarcEdit has the ability to harvest metadata from an OAI data provider and convert the data directly to MARC. Supported formats are MARCXML, oaimarc, oai_dc, and MODS. However, the program allows the user to provide their own translation rules, so any format could be accommodated. + - XML Translations: MarcEdit supports the facilitation of metadata from XML and non-XML formats into various forms, including MARC. + - XML Profiler: A wizard that allows users to profile XML and JSON files and create portable translations without having to write any XSLT or XQuery + - Characterset conversion: MarcEdit supports the ability to convert MARC records from one characterset to another. This includes the traditional charactersets like MARC-8 (ANSEL) and UTF-8. But it also includes support for any characterset currently supported by the operating system. So users with MARC data in Traditional Chinese can utilize MarcEdit to convert that data to UTF-8. + - Z39.50/SRU Client: MarcEdit includes a built in Z39.50 and SRU client for interaction with other library systems. + - ILS and OCLC Integrations: The tool provides ways to integrate directly with a number of ILS providers, as well as OCLC. + - MARC SQL Explorer:MarcEdit includes an SQL Explorer — a tool that allows users to export their data into either an SQLite or MySQL data and run SQL queries directly on the data to mine for information. + - MARCValidator: MarcEdit includes a number of tools to help users validate data and identify incorrectly structured MARC record data. + - XML Editor:MarcEdit includes a built-in, light-weight hex editor to support quick editing of XML data. + - Hex Editor: Trouble shoot binary data with a built-in hex editor. + - Native software for MacOS and Windows: MarcEdit is written and compiled as native MacOS and Windows applications. The application can be run on Linux using Wine or via command-line as a stand alone program. + - Many more features: Like the ability to split, join, sort, etc. data in various formats. + Today, libraries deal with metadata that comes from many different formats, from a variety of different sources. The ability to easily work with those disparate schemas to manipulate them for use in our various systems will continue to be a challenge as libraries map out their metadata futures over the next decade. Working with the library community, MarcEdit will continue to evolve to meet those needs and endeavor to provide the tools necessary to enable librarians to make the best use of their metadata assets. +# Moniker: +Tags: +- marc +- metadata +ReleaseNotes: |- + - General performance updates + - Merge Records: New feature added so you can merge just a subfield to an existing field. + - Bug Fix: Console program was referencing an undefined object when using the validate/clean options. This has been corrected. + - General: Dependencies bumped. +ReleaseNotesUrl: https://marcedit.reeset.net/software/update75.txt +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Tutorials + DocumentUrl: https://marcedit.reeset.net/tutorials +- DocumentLabel: FAQ + DocumentUrl: https://marcedit.reeset.net/marcedit-faqs ManifestType: defaultLocale ManifestVersion: 1.10.0 diff --git a/manifests/t/TerryReese/MarcEdit/7.7.35/TerryReese.MarcEdit.locale.zh-CN.yaml b/manifests/t/TerryReese/MarcEdit/7.7.35/TerryReese.MarcEdit.locale.zh-CN.yaml new file mode 100644 index 0000000000000..9a8f6b67d9cae --- /dev/null +++ b/manifests/t/TerryReese/MarcEdit/7.7.35/TerryReese.MarcEdit.locale.zh-CN.yaml @@ -0,0 +1,59 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: TerryReese.MarcEdit +PackageVersion: 7.7.35 +PackageLocale: zh-CN +# Publisher: +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +# PackageName: +# PackageUrl: +License: 专有软件 +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: MarcEdit 目前包含非常丰富的功能集,旨在让初学者和高级用户都能更轻松地进行元数据转换和编辑。 +Description: |- + 1999 年,MarcEdit 起初只是一个简单的 MARC 转换为纯文本的工具。如今,MarcEdit 已成为图书馆员可用的最完整的元数据编辑套件之一。虽然多年来“MarcEdit”这个名称已不完全准确(因为 MarcEdit 现在可以编辑的不仅仅是 MARC 记录),但该程序已经并将继续发展,以满足图书馆社区过去、现在和未来的元数据需求。 + 目前,MarcEdit 提供了非常丰富的功能集,旨在使初学者和高级用户都能更轻松地进行元数据转换和编辑。这些功能包括: + - MARC 编辑:MarcEdit 包含 MARC Breaker 和 Maker,可将 MARC 数据转换为更友好的助记文件格式。它还包括一个专用的 MARC 编辑器,提供多种全局编辑功能,支持编辑 MODS 和 MARCXML 数据(以助记格式),并可将其他数据源(如 OCLC 等)的数据集成到一批 MARC 数据中。 + - 自动规范化支持:UTF-8 数据有多种规范化方式——图书馆主要使用两种。根据 ILS 的不同,不正确或混合的规范化可能导致索引和显示问题。MarcEdit 支持自动数据规范化。 + - 元数据转换:内置从 MARC 到 JSON、JSON 到 MARC、MARC 到 JSONLD、JSON 到 XML、BibFrame 到 MARC 的转换功能,以及多个 XSLT 转换,可在各种图书馆和非图书馆领域的元数据框架之间进行转换(通常包括 MARC)。 + - MarcEditor:MarcEditor 是 MarcEdit 的内置元数据编辑器。它包括多种全局编辑功能,支持完整的正则表达式和 UTF-8,并允许用户根据操作系统支持的字符集配置编辑器。功能包括:全局添加/删除字段、编辑子字段、交换字段数据、复制字段数据、编辑指示符、生成分类号、验证记录、生成报告、查找/替换、与支持的 ILS 系统直接集成、宏支持、任务支持、分类号生成、自动 LC 和 FAST 主题生成、自动链接数据对齐等。 + - 链接数据框架:支持自动数据对齐的框架和工具。 + - BibFrame 工作流程:内置工作流程,用于将数据转换为 BibFrame 或从 BibFrame 中提取数据进行编辑。 + - 聚类:MarcEdit 支持对字段或子字段进行聚类并在聚类中编辑数据。 + - RDA 助手:RDA 助手是一个独立且集成的工具,可让用户使用一组 MARC 数据自动生成 RDA 特定数据。RDA 数据基于来源记录集的控制数据、可变字段数据和 RDA 特定假设生成。 + - 分隔文本翻译器:分隔文本翻译器是一种工具,允许用户将 Excel、Access 或任何分隔格式的数据翻译成 MARC。 + - 导出为制表符分隔格式:允许用户将 MARC 数据导出为分隔文本的工具。 + - 收割 OAI 数据:MarcEdit 能够从 OAI 数据提供者处收割元数据,并直接将其转换为 MARC。支持的格式包括 MARCXML、oaimarc、oai_dc 和 MODS。此外,用户可以提供自己的翻译规则,因此可以适应任何格式。 + - XML 转换:MarcEdit 支持将 XML 和非 XML 格式的元数据转换为各种形式,包括 MARC。 + - XML 分析器:一个向导,允许用户分析 XML 和 JSON 文件,并在无需编写任何 XSLT 或 XQuery 的情况下创建便携式转换。 + - 字符集转换:MarcEdit 支持将 MARC 记录从一种字符集转换为另一种字符集。这包括传统字符集(如 MARC-8(ANSEL)和 UTF-8),以及操作系统当前支持的任何字符集。因此,拥有繁体中文 MARC 数据的用户可以利用 MarcEdit 将其转换为 UTF-8。 + - Z39.50/SRU 客户端:MarcEdit 包括内置的 Z39.50 和 SRU 客户端,用于与其他图书馆系统交互。 + - ILS 和 OCLC 集成:该工具提供了与多种 ILS 提供商以及 OCLC 直接集成的方法。 + - MARC SQL 浏览器:MarcEdit 包括一个 SQL 浏览器——一个允许用户将数据导出为 SQLite 或 MySQL 数据并直接运行 SQL 查询以挖掘信息的工具。 + - MARC 验证器:MarcEdit 提供了多种工具,帮助用户验证数据并识别结构不正确的 MARC 记录数据。 + - XML 编辑器:MarcEdit 包括一个内置的轻量级 XML 编辑器,用于快速编辑 XML 数据。 + - 十六进制编辑器:内置十六进制编辑器,用于解决二进制数据问题。 + - 适用于 MacOS 和 Windows 的本地软件:MarcEdit 被编写并编译为原生的 MacOS 和 Windows 应用程序。该应用程序可以通过 Wine 在 Linux 上运行,或作为独立程序通过命令行运行。 + - 其他功能:例如,能够对各种格式的数据进行分割、合并、排序等操作。 + 如今,图书馆处理来自不同格式和多种来源的元数据。能够轻松处理这些不同的模式并将其转换以适应各种系统的需求,将在未来十年继续成为图书馆的挑战。通过与图书馆社区合作,MarcEdit 将继续发展,以满足这些需求,并努力提供必要的工具,使图书馆员能够充分利用其元数据资产。 +# Moniker: +Tags: +- marc +- 元数据 +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: 教程 + DocumentUrl: https://marcedit.reeset.net/tutorials +- DocumentLabel: 常见问题 + DocumentUrl: https://marcedit.reeset.net/marcedit-faqs +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/t/TerryReese/MarcEdit/7.7.35/TerryReese.MarcEdit.yaml b/manifests/t/TerryReese/MarcEdit/7.7.35/TerryReese.MarcEdit.yaml index c48f4a9234d84..a2881862f96c5 100644 --- a/manifests/t/TerryReese/MarcEdit/7.7.35/TerryReese.MarcEdit.yaml +++ b/manifests/t/TerryReese/MarcEdit/7.7.35/TerryReese.MarcEdit.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/May/11 +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: TerryReese.MarcEdit diff --git a/manifests/t/ThePandemoniumInstitute/BloodontheClocktowerOnline/3.44.3/ThePandemoniumInstitute.BloodontheClocktowerOnline.installer.yaml b/manifests/t/ThePandemoniumInstitute/BloodontheClocktowerOnline/3.44.3/ThePandemoniumInstitute.BloodontheClocktowerOnline.installer.yaml new file mode 100644 index 0000000000000..9bf5b7b0669dd --- /dev/null +++ b/manifests/t/ThePandemoniumInstitute/BloodontheClocktowerOnline/3.44.3/ThePandemoniumInstitute.BloodontheClocktowerOnline.installer.yaml @@ -0,0 +1,25 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: ThePandemoniumInstitute.BloodontheClocktowerOnline +PackageVersion: 3.44.3 +InstallerLocale: en-US +InstallerType: nullsoft +InstallerSwitches: + Silent: /S + SilentWithProgress: /S + InstallLocation: /D= +UpgradeBehavior: install +ProductCode: Blood on the Clocktower Online +AppsAndFeaturesEntries: +- Publisher: thepandemoniuminstitute + ProductCode: Blood on the Clocktower Online +InstallationMetadata: + DefaultInstallLocation: placeholder\Blood on the Clocktower Online +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ThePandemoniumInstitute/botc-release/releases/download/v3.44.3/Blood.on.the.Clocktower.Online_3.44.3_x64-setup.exe + InstallerSha256: B6313CF772BB1BCF4EECAFE4DD57DFB24777B930940EFD97B24CD755E9DF392C +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-07-07 diff --git a/manifests/t/ThePandemoniumInstitute/BloodontheClocktowerOnline/3.44.3/ThePandemoniumInstitute.BloodontheClocktowerOnline.locale.en-US.yaml b/manifests/t/ThePandemoniumInstitute/BloodontheClocktowerOnline/3.44.3/ThePandemoniumInstitute.BloodontheClocktowerOnline.locale.en-US.yaml new file mode 100644 index 0000000000000..a4642b0986957 --- /dev/null +++ b/manifests/t/ThePandemoniumInstitute/BloodontheClocktowerOnline/3.44.3/ThePandemoniumInstitute.BloodontheClocktowerOnline.locale.en-US.yaml @@ -0,0 +1,26 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: ThePandemoniumInstitute.BloodontheClocktowerOnline +PackageVersion: 3.44.3 +PackageLocale: en-US +Publisher: Steffen Baumgart +PublisherUrl: https://bloodontheclocktower.com/ +PublisherSupportUrl: https://github.com/ThePandemoniumInstitute/botc-release/issues +PrivacyUrl: https://bloodontheclocktower.com/privacy-policy +PackageName: Blood on the Clocktower Online +PackageUrl: https://github.com/ThePandemoniumInstitute/botc-release +License: Proprietary +LicenseUrl: https://bloodontheclocktower.com/terms-of-use +Copyright: Copyright © 2024 Steffen Baumgart +ShortDescription: Blood on the Clocktower Online +Moniker: clocktower +Tags: +- app +- binaries +- botc +- clocktower +- download +ReleaseNotesUrl: https://github.com/ThePandemoniumInstitute/botc-release/releases/tag/v3.44.3 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/t/ThePandemoniumInstitute/BloodontheClocktowerOnline/3.44.3/ThePandemoniumInstitute.BloodontheClocktowerOnline.yaml b/manifests/t/ThePandemoniumInstitute/BloodontheClocktowerOnline/3.44.3/ThePandemoniumInstitute.BloodontheClocktowerOnline.yaml new file mode 100644 index 0000000000000..1421df98d6e28 --- /dev/null +++ b/manifests/t/ThePandemoniumInstitute/BloodontheClocktowerOnline/3.44.3/ThePandemoniumInstitute.BloodontheClocktowerOnline.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: ThePandemoniumInstitute.BloodontheClocktowerOnline +PackageVersion: 3.44.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/t/TinyCraft/TinyRDM/1.2.4/TinyCraft.TinyRDM.installer.yaml b/manifests/t/TinyCraft/TinyRDM/1.2.4/TinyCraft.TinyRDM.installer.yaml new file mode 100644 index 0000000000000..3a64b59595bf4 --- /dev/null +++ b/manifests/t/TinyCraft/TinyRDM/1.2.4/TinyCraft.TinyRDM.installer.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: TinyCraft.TinyRDM +PackageVersion: 1.2.4 +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: install +ProductCode: Tiny CraftTiny RDM +ReleaseDate: 2025-07-06 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/tiny-craft/tiny-rdm/releases/download/v1.2.4/TinyRDM_Setup_1.2.4_windows_x64.exe + InstallerSha256: 8EAD03F8070409161425FAE15690C3998C086F4299244726F08AD1E8E0E6F1BD +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/t/TinyCraft/TinyRDM/1.2.4/TinyCraft.TinyRDM.locale.en-US.yaml b/manifests/t/TinyCraft/TinyRDM/1.2.4/TinyCraft.TinyRDM.locale.en-US.yaml new file mode 100644 index 0000000000000..f5229d68e13b3 --- /dev/null +++ b/manifests/t/TinyCraft/TinyRDM/1.2.4/TinyCraft.TinyRDM.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.10.0.schema.json + +PackageIdentifier: TinyCraft.TinyRDM +PackageVersion: 1.2.4 +PackageLocale: en-US +Publisher: Tiny Craft +PublisherUrl: https://github.com/tiny-craft +PublisherSupportUrl: https://github.com/tiny-craft/tiny-rdm/issues +PackageName: Tiny RDM +PackageUrl: https://redis.tinycraft.cc/ +License: GPL-3.0 +LicenseUrl: https://github.com/tiny-craft/tiny-rdm/blob/main/LICENSE +Copyright: Copyright © 2024 Tinycraft.cc All rights reserved +ShortDescription: A Modern Redis Desktop Manager +Description: Tiny RDM is a modern lightweight cross-platform Redis desktop manager available for Mac, Windows, and Linux. +Tags: +- redis +ReleaseNotes: |- + Optimizations + - Optimized the implementation logic of Pub/Sub and monitor. + - Changed key matching from prefix match to fuzzy match by default. + Fixes + - Fixed incorrect sorting of connected clients by idle time. + - Fixed incorrect TTL format display. + - Fixed terminal selection overflow (Thanks to @leonialla). + - Fixed could not be input space in terminal under Chinese IME. + - Added installation package with GTK 4.1 support for Linux (Thanks to @kt286). +ReleaseNotesUrl: https://github.com/tiny-craft/tiny-rdm/releases/tag/v1.2.4 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/t/TinyCraft/TinyRDM/1.2.4/TinyCraft.TinyRDM.locale.zh-CN.yaml b/manifests/t/TinyCraft/TinyRDM/1.2.4/TinyCraft.TinyRDM.locale.zh-CN.yaml new file mode 100644 index 0000000000000..062c399dea9be --- /dev/null +++ b/manifests/t/TinyCraft/TinyRDM/1.2.4/TinyCraft.TinyRDM.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.10.0.schema.json + +PackageIdentifier: TinyCraft.TinyRDM +PackageVersion: 1.2.4 +PackageLocale: zh-CN +Publisher: Tiny Craft +PublisherUrl: https://github.com/tiny-craft +PublisherSupportUrl: https://github.com/tiny-craft/tiny-rdm/issues +PackageName: Tiny RDM +PackageUrl: https://redis.tinycraft.cc/ +License: GPL-3.0 +LicenseUrl: https://github.com/tiny-craft/tiny-rdm/blob/main/LICENSE +Copyright: Copyright © 2024 Tinycraft.cc All rights reserved +ShortDescription: 一个更现代化的 Redis 桌面管理客户端 +Description: 一个现代化轻量级的跨平台 Redis 桌面客户端,支持 Mac、Windows 和 Linux。 +Tags: +- redis +ReleaseNotes: |- + 功能优化 + - 优化发布/订阅和命令监控的实现逻辑 + - 键默认匹配从前缀匹配更改为模糊匹配 + 问题修复 + - 已连接客户端按空闲排序有误 + - 键过期时间可能显示有误 + - 终端选中状态溢出 (感谢 @leonialla) + - 中文输入状态下无法在终端输入空格 + - 增加 Linux 下 GTK4.1 支持的安装包 (感谢 @kt286) +ReleaseNotesUrl: https://github.com/tiny-craft/tiny-rdm/releases/tag/v1.2.4 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/t/TinyCraft/TinyRDM/1.2.4/TinyCraft.TinyRDM.yaml b/manifests/t/TinyCraft/TinyRDM/1.2.4/TinyCraft.TinyRDM.yaml new file mode 100644 index 0000000000000..dab2ccd124b90 --- /dev/null +++ b/manifests/t/TinyCraft/TinyRDM/1.2.4/TinyCraft.TinyRDM.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: TinyCraft.TinyRDM +PackageVersion: 1.2.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/t/Tutanota/Tutanota/296.250708.0/Tutanota.Tutanota.installer.yaml b/manifests/t/Tutanota/Tutanota/296.250708.0/Tutanota.Tutanota.installer.yaml new file mode 100644 index 0000000000000..e9d961b04d089 --- /dev/null +++ b/manifests/t/Tutanota/Tutanota/296.250708.0/Tutanota.Tutanota.installer.yaml @@ -0,0 +1,28 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Tutanota.Tutanota +PackageVersion: 296.250708.0 +InstallerLocale: en-US +InstallerType: nullsoft +InstallModes: +- interactive +- silent +UpgradeBehavior: install +ProductCode: 450699d2-1c81-5ee5-aec6-08dddb7af9d7 +ReleaseDate: 2025-07-08 +AppsAndFeaturesEntries: +- DisplayName: Tuta Mail 296.250708.0 + ProductCode: 450699d2-1c81-5ee5-aec6-08dddb7af9d7 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/tutao/tutanota/releases/download/tutanota-desktop-release-296.250708.0/tutanota-desktop-win.exe + InstallerSha256: DF5BF3EF1FBEAE35BFF207FFBE7E9DC3B9BF5D28F8798CC2E63FEF19DC5C166D +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/tutao/tutanota/releases/download/tutanota-desktop-release-296.250708.0/tutanota-desktop-win.exe + InstallerSha256: DF5BF3EF1FBEAE35BFF207FFBE7E9DC3B9BF5D28F8798CC2E63FEF19DC5C166D + ElevationRequirement: elevatesSelf +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/t/Tutanota/Tutanota/296.250708.0/Tutanota.Tutanota.locale.en-US.yaml b/manifests/t/Tutanota/Tutanota/296.250708.0/Tutanota.Tutanota.locale.en-US.yaml new file mode 100644 index 0000000000000..f1acdc7ca1ce2 --- /dev/null +++ b/manifests/t/Tutanota/Tutanota/296.250708.0/Tutanota.Tutanota.locale.en-US.yaml @@ -0,0 +1,51 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Tutanota.Tutanota +PackageVersion: 296.250708.0 +PackageLocale: en-US +Publisher: Tutao GmbH +PublisherUrl: https://tuta.com/ +PublisherSupportUrl: https://github.com/tutao/tutanota/issues +Author: Tutao GmbH +PackageName: Tutanota Desktop +PackageUrl: https://github.com/tutao/tutanota +License: GPL-3.0 +LicenseUrl: https://github.com/tutao/tutanota/blob/HEAD/LICENSE.txt +Copyright: Copyright © 2022 Tutao GmbH +ShortDescription: Tutanota is an email client with a strong focus on security and privacy that lets you encrypt emails on all your devices. +Description: |- + Tutanota is the worlds most secure email service, easy to use and private by design. + With end-to-end encryption and 2FA, your emails have never been more secure. + The built-in encryption guarantees that your mailbox belongs to you. + Nobody can decrypt or read your data. +Moniker: tutanota +Tags: +- calendar +- email +- email-client +- encryption +- end-to-end-encryption +- privacy +- private +- secure +ReleaseNotes: |- + What's new + - Faster sync process after login + Bugfixes + - Search bar doesn't span entire available width on mobile + - Free accounts do not cache mails + Asset Checksums (SHA256) + tutanota-desktop-linux.AppImage: + 8f553b090022226690aabc83bbdcd5cd5edb6e6a5061fb348182033af351e2ab + tutanota-desktop-win.exe: + df5bf3ef1fbeae35bff207ffbe7e9dc3b9bf5d28f8798cc2e63fef19dc5c166d + tutanota-desktop-mac.dmg: + 6b9318a88630f97e8210766940c5c0f971634378abece7b482d1a3766628f171 +ReleaseNotesUrl: https://github.com/tutao/tutanota/releases/tag/tutanota-desktop-release-296.250708.0 +PurchaseUrl: https://tutanota.com/pricing +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://tutanota.com/faq +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/t/Tutanota/Tutanota/296.250708.0/Tutanota.Tutanota.yaml b/manifests/t/Tutanota/Tutanota/296.250708.0/Tutanota.Tutanota.yaml new file mode 100644 index 0000000000000..367d4b1d211a7 --- /dev/null +++ b/manifests/t/Tutanota/Tutanota/296.250708.0/Tutanota.Tutanota.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Tutanota.Tutanota +PackageVersion: 296.250708.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/u/Ubiquiti/IdentityDesktop/Endpoint/0.1.13.31/Ubiquiti.IdentityDesktop.Endpoint.installer.yaml b/manifests/u/Ubiquiti/IdentityDesktop/Endpoint/0.1.13.31/Ubiquiti.IdentityDesktop.Endpoint.installer.yaml new file mode 100644 index 0000000000000..468ad2f8d582f --- /dev/null +++ b/manifests/u/Ubiquiti/IdentityDesktop/Endpoint/0.1.13.31/Ubiquiti.IdentityDesktop.Endpoint.installer.yaml @@ -0,0 +1,18 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Ubiquiti.IdentityDesktop.Endpoint +PackageVersion: 0.1.13.31 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.10240.0 +InstallerLocale: en-US +InstallerType: wix +ProductCode: '{0163E59F-332B-4936-86C7-A664306728E9}' +ReleaseDate: 2024-01-17 +Installers: +- InstallerUrl: https://fw-download.ubnt.com/data/uid-identity-standard-desktop-app-msi/49b8-windows-0.1.13-3377712d-a3ed-498b-bcdc-d56b76783066.msi + Architecture: x64 + InstallerSha256: 548A13AC4B40C974AC22E61A353BE942D332645E43418316E3F452EB0881A6F6 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/u/Ubiquiti/IdentityDesktop/Endpoint/0.1.13.31/Ubiquiti.IdentityDesktop.Endpoint.locale.en-US.yaml b/manifests/u/Ubiquiti/IdentityDesktop/Endpoint/0.1.13.31/Ubiquiti.IdentityDesktop.Endpoint.locale.en-US.yaml new file mode 100644 index 0000000000000..ac677868e880e --- /dev/null +++ b/manifests/u/Ubiquiti/IdentityDesktop/Endpoint/0.1.13.31/Ubiquiti.IdentityDesktop.Endpoint.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Ubiquiti.IdentityDesktop.Endpoint +PackageVersion: 0.1.13.31 +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: + - unifi + - identity + - wifi + - vpn +ReleaseNotes: Fixed the issue where credential import failed if the Windows device’s model name exceeded 32 characters. +ReleaseNotesUrl: https://community.ui.com/releases/UniFi-Identity-Windows-0-1-13/0b1449c2-8ba1-40c0-a999-1616395ded88 +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.5.0 diff --git a/manifests/u/Ubiquiti/IdentityDesktop/Endpoint/0.1.13.31/Ubiquiti.IdentityDesktop.Endpoint.yaml b/manifests/u/Ubiquiti/IdentityDesktop/Endpoint/0.1.13.31/Ubiquiti.IdentityDesktop.Endpoint.yaml new file mode 100644 index 0000000000000..7721e5ab0d096 --- /dev/null +++ b/manifests/u/Ubiquiti/IdentityDesktop/Endpoint/0.1.13.31/Ubiquiti.IdentityDesktop.Endpoint.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Ubiquiti.IdentityDesktop.Endpoint +PackageVersion: 0.1.13.31 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/u/Ubiquiti/IdentityDesktop/Endpoint/1.1.3.91/Ubiquiti.IdentityDesktop.Endpoint.installer.yaml b/manifests/u/Ubiquiti/IdentityDesktop/Endpoint/1.1.3.91/Ubiquiti.IdentityDesktop.Endpoint.installer.yaml new file mode 100644 index 0000000000000..9f680802c528e --- /dev/null +++ b/manifests/u/Ubiquiti/IdentityDesktop/Endpoint/1.1.3.91/Ubiquiti.IdentityDesktop.Endpoint.installer.yaml @@ -0,0 +1,18 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Ubiquiti.IdentityDesktop.Endpoint +PackageVersion: 1.1.3.91 +InstallerLocale: en-US +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.10240.0 +InstallerType: wix +ProductCode: '{EE3B1BF6-B72F-419B-B382-94F111C533C4}' +Installers: +- Architecture: x64 + InstallerUrl: https://fw-download.ubnt.com/data/uid-identity-standard-desktop-app-msi/ef7b-windows-1.1.3-ca12603b-a89f-4476-a873-1db48593eaa4.msi + InstallerSha256: 45BB4DF3ABA0D4C1078FDBE5B19894C1550F0594CB1DEA24AF92A0212C251A99 +ManifestType: installer +ManifestVersion: 1.6.0 +ReleaseDate: 2024-08-23 diff --git a/manifests/u/Ubiquiti/IdentityDesktop/Endpoint/1.1.3.91/Ubiquiti.IdentityDesktop.Endpoint.locale.en-US.yaml b/manifests/u/Ubiquiti/IdentityDesktop/Endpoint/1.1.3.91/Ubiquiti.IdentityDesktop.Endpoint.locale.en-US.yaml new file mode 100644 index 0000000000000..99ca2e46be3f6 --- /dev/null +++ b/manifests/u/Ubiquiti/IdentityDesktop/Endpoint/1.1.3.91/Ubiquiti.IdentityDesktop.Endpoint.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: Ubiquiti.IdentityDesktop.Endpoint +PackageVersion: 1.1.3.91 +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: + - unifi + - identity + - wifi + - vpn +ReleaseNotes: >- + Overview: + * UniFi Identity Endpoint Windows 1.1.2.74 includes the following improvements. + Improvements: + * Ensure that the One-Click WiFi and VPN connection remains active when switching between consoles. +ReleaseNotesUrl: https://community.ui.com/releases/UniFi-Identity-Endpoint-Windows-1-1-2/2eea8bef-b6d9-4ca2-9d78-ac5340e8104d +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.6.0 diff --git a/manifests/u/Ubiquiti/IdentityDesktop/Endpoint/1.1.3.91/Ubiquiti.IdentityDesktop.Endpoint.yaml b/manifests/u/Ubiquiti/IdentityDesktop/Endpoint/1.1.3.91/Ubiquiti.IdentityDesktop.Endpoint.yaml new file mode 100644 index 0000000000000..d1ee5453858ee --- /dev/null +++ b/manifests/u/Ubiquiti/IdentityDesktop/Endpoint/1.1.3.91/Ubiquiti.IdentityDesktop.Endpoint.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: Ubiquiti.IdentityDesktop.Endpoint +PackageVersion: 1.1.3.91 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/u/Ubiquiti/IdentityDesktop/Enterprise/0.50.1.2/Ubiquiti.IdentityDesktop.Enterprise.installer.yaml b/manifests/u/Ubiquiti/IdentityDesktop/Enterprise/0.50.1.2/Ubiquiti.IdentityDesktop.Enterprise.installer.yaml new file mode 100644 index 0000000000000..96de65f691952 --- /dev/null +++ b/manifests/u/Ubiquiti/IdentityDesktop/Enterprise/0.50.1.2/Ubiquiti.IdentityDesktop.Enterprise.installer.yaml @@ -0,0 +1,14 @@ +# Created using wingetcreate 1.0.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Ubiquiti.IdentityDesktop.Enterprise +PackageVersion: 0.50.1.2 +Installers: + - InstallerLocale: en-US + Architecture: x64 + InstallerType: wix + InstallerUrl: https://fw-download.ubnt.com/data/uid-ui-desktop-app-msi/b8dc-windows-0.50.1-b9341f4e983d41999b5f5c00e39aa169.msi + InstallerSha256: 80AB640503F231EE777341466B39BEE0E7D5A61EC9409AE7A1576C66D7C3F90C + ProductCode: '{79DBBB94-6BBB-4F6B-986D-1ADE76738F0E}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/u/Ubiquiti/IdentityDesktop/Enterprise/0.50.1.2/Ubiquiti.IdentityDesktop.Enterprise.locale.en-US.yaml b/manifests/u/Ubiquiti/IdentityDesktop/Enterprise/0.50.1.2/Ubiquiti.IdentityDesktop.Enterprise.locale.en-US.yaml new file mode 100644 index 0000000000000..18982934f1294 --- /dev/null +++ b/manifests/u/Ubiquiti/IdentityDesktop/Enterprise/0.50.1.2/Ubiquiti.IdentityDesktop.Enterprise.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.0.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Ubiquiti.IdentityDesktop.Enterprise +PackageVersion: 0.50.1.2 +PackageLocale: en-US +Publisher: Ubiquiti Inc. +PublisherUrl: https://ui.com/ +PrivacyUrl: https://www.ui.com/legal/privacypolicy/ +Author: Ubiquiti Inc. +PackageName: Identity Desktop Enterprise +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 enterprise identity application for Windows. +Description: Unifi Identity Desktop is Ubiquiti's enterprise identity application for Windows. Allowing for One-Click WiFi, One-Click VPN, and more. +Moniker: unifi-identity-desktop-enterprise +Tags: + - unifi + - identity + - wifi + - vpn +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.10.0 diff --git a/manifests/u/Ubiquiti/IdentityDesktop/Enterprise/0.50.1.2/Ubiquiti.IdentityDesktop.Enterprise.yaml b/manifests/u/Ubiquiti/IdentityDesktop/Enterprise/0.50.1.2/Ubiquiti.IdentityDesktop.Enterprise.yaml new file mode 100644 index 0000000000000..a61de88e09eac --- /dev/null +++ b/manifests/u/Ubiquiti/IdentityDesktop/Enterprise/0.50.1.2/Ubiquiti.IdentityDesktop.Enterprise.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.0.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Ubiquiti.IdentityDesktop.Enterprise +PackageVersion: 0.50.1.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/u/Ubiquiti/UniFiNetworkServer/8.0.28/Ubiquiti.UniFiNetworkServer.installer.yaml b/manifests/u/Ubiquiti/UniFiNetworkServer/8.0.28/Ubiquiti.UniFiNetworkServer.installer.yaml new file mode 100644 index 0000000000000..1187445d38c4e --- /dev/null +++ b/manifests/u/Ubiquiti/UniFiNetworkServer/8.0.28/Ubiquiti.UniFiNetworkServer.installer.yaml @@ -0,0 +1,31 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Ubiquiti.UniFiNetworkServer +PackageVersion: 8.0.28 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: machine +InstallModes: + - interactive + - silent + - silentWithProgress +UpgradeBehavior: install +ReleaseDate: 2024-12-05 +AppsAndFeaturesEntries: + - DisplayName: Ubiquiti UniFi +Installers: + - Architecture: x64 + InstallerUrl: https://dl.ui.com/unifi/8.0.28/UniFi-installer.exe + InstallerSha256: 0ED811DE070D66B3CE621B0DBFE3742E4E3B3214C99ABD3EF151A991BE3BDEAF + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 + - Architecture: x86 + InstallerUrl: https://dl.ui.com/unifi/8.0.28/UniFi-installer.exe + InstallerSha256: 0ED811DE070D66B3CE621B0DBFE3742E4E3B3214C99ABD3EF151A991BE3BDEAF + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/u/Ubiquiti/UniFiNetworkServer/8.0.28/Ubiquiti.UniFiNetworkServer.locale.en-US.yaml b/manifests/u/Ubiquiti/UniFiNetworkServer/8.0.28/Ubiquiti.UniFiNetworkServer.locale.en-US.yaml new file mode 100644 index 0000000000000..b03a6cf407d97 --- /dev/null +++ b/manifests/u/Ubiquiti/UniFiNetworkServer/8.0.28/Ubiquiti.UniFiNetworkServer.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Ubiquiti.UniFiNetworkServer +PackageVersion: 8.0.28 +PackageLocale: en-US +Publisher: Ubiquiti Inc. +PublisherUrl: https://ui.com/introduction +PrivacyUrl: https://www.ui.com/legal/privacypolicy/ +PackageName: Ubiquiti UniFi Network Server +PackageUrl: https://ui.com/download/releases/network-server +License: Terms of Service +LicenseUrl: https://www.ui.com/legal/termsofservice/ +Copyright: © 2024 Ubiquiti Inc. All rights reserved. +CopyrightUrl: https://www.ui.com/legal/ +ShortDescription: |- + The UniFi Network Application, developed by Ubiquiti Inc., is a centralized network management + software designed to configure, manage, and monitor UniFi devices and networks. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/u/Ubiquiti/UniFiNetworkServer/8.0.28/Ubiquiti.UniFiNetworkServer.yaml b/manifests/u/Ubiquiti/UniFiNetworkServer/8.0.28/Ubiquiti.UniFiNetworkServer.yaml new file mode 100644 index 0000000000000..426a4731b3eb1 --- /dev/null +++ b/manifests/u/Ubiquiti/UniFiNetworkServer/8.0.28/Ubiquiti.UniFiNetworkServer.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Ubiquiti.UniFiNetworkServer +PackageVersion: 8.0.28 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/u/usual2970/Certimate/0.3.19/usual2970.Certimate.installer.yaml b/manifests/u/usual2970/Certimate/0.3.19/usual2970.Certimate.installer.yaml new file mode 100644 index 0000000000000..1ab60443dd2cb --- /dev/null +++ b/manifests/u/usual2970/Certimate/0.3.19/usual2970.Certimate.installer.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: usual2970.Certimate +PackageVersion: 0.3.19 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: certimate.exe + PortableCommandAlias: certimate +Commands: +- certimate +ReleaseDate: 2025-06-22 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/certimate-go/certimate/releases/download/v0.3.19/certimate_v0.3.19_windows_amd64.zip + InstallerSha256: 494D3CBBE7794BBD0B738F3235429F4F255126A3FD3C21F9CFEA53ED62F04C8E +- Architecture: arm64 + InstallerUrl: https://github.com/certimate-go/certimate/releases/download/v0.3.19/certimate_v0.3.19_windows_arm64.zip + InstallerSha256: 4C938365670982FEA28735A833AD3B85E76CC3C59B193E822A59431DA3E200CE +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/u/usual2970/Certimate/0.3.19/usual2970.Certimate.locale.en-US.yaml b/manifests/u/usual2970/Certimate/0.3.19/usual2970.Certimate.locale.en-US.yaml new file mode 100644 index 0000000000000..938c1961ba02c --- /dev/null +++ b/manifests/u/usual2970/Certimate/0.3.19/usual2970.Certimate.locale.en-US.yaml @@ -0,0 +1,47 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: usual2970.Certimate +PackageVersion: 0.3.19 +PackageLocale: en-US +Publisher: Yoan.liu +PublisherUrl: https://profile.ikit.fun/ +PublisherSupportUrl: https://github.com/certimate-go/certimate/issues +PackageName: Certimate +PackageUrl: https://docs.certimate.me/en/ +License: MIT +LicenseUrl: https://github.com/certimate-go/certimate/blob/HEAD/LICENSE +Copyright: |- + Copyright (c) 2025 certimate-go + Copyright (c) 2024 Yoan.Liu +ShortDescription: An open-source SSL certificate management tool that helps you automatically apply for and deploy SSL certificates, as well as automatically renew them when they are about to expire. +Description: |- + For individuals managing personal projects or those responsible for IT operations in small businesses who need to manage multiple domain names, applying for certificates manually comes with several drawbacks: + - 😱 Troublesome: Applying for and deploying certificates isn’t difficult, but it can be quite a hassle, especially when managing multiple domains. + - 😭 Easily forgotten: The current free certificate has a validity period of only 90 days, requiring regular renewal operations. This increases the workload and makes it easy to forget, which can result in the website becoming inaccessible. + Certimate was created to solve the above-mentioned issues and has the following advantages: + - Local Deployment: Simply to install, download the binary and run it directly. Supports Docker deployment and source code deployment for added flexibility. + - Data Security: With private deployment, all data is stored on your own servers, ensuring it never resides on third-party systems and maintaining full control over your data. + - Easy Operation: Effortlessly apply and deploy SSL certificates with minimal configuration. The system automatically renews certificates before expiration, providing a fully automated workflow, no manual intervention required. + Certimate aims to provide users with a secure and user-friendly SSL certificate management solution. + 💡 Features + - Flexible workflow orchestration, fully automation from certificate application to deployment; + - Supports single-domain, multi-domain, wildcard certificates, with options for RSA or ECC. + - Supports various certificate formats such as PEM, PFX, JKS. + - Supports more than 20+ domain registrars (e.g., Alibaba Cloud, Tencent Cloud, Cloudflare, etc. Check out this link); + - Supports more than 60+ deployment targets (e.g., Kubernetes, CDN, WAF, load balancers, etc. Check out this link); + - Supports multiple notification channels including email, DingTalk, Feishu, WeCom, Webhook, and more; + - Supports multiple ACME CAs including Let's Encrypt, ZeroSSL, Google Trust Services, and more; + - More features waiting to be discovered. +Tags: +- acme +- cert +- certbot +- certificate +- ssl +ReleaseNotesUrl: https://github.com/certimate-go/certimate/releases/tag/v0.3.19 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.certimate.me/en/docs/introduction/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/u/usual2970/Certimate/0.3.19/usual2970.Certimate.locale.zh-CN.yaml b/manifests/u/usual2970/Certimate/0.3.19/usual2970.Certimate.locale.zh-CN.yaml new file mode 100644 index 0000000000000..7b6ce918e0c97 --- /dev/null +++ b/manifests/u/usual2970/Certimate/0.3.19/usual2970.Certimate.locale.zh-CN.yaml @@ -0,0 +1,53 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: usual2970.Certimate +PackageVersion: 0.3.19 +PackageLocale: zh-CN +Publisher: Yoan.liu +PublisherUrl: https://profile.ikit.fun/ +PublisherSupportUrl: https://github.com/certimate-go/certimate/issues +PackageName: Certimate +PackageUrl: https://docs.certimate.me/ +License: MIT +LicenseUrl: https://github.com/certimate-go/certimate/blob/HEAD/LICENSE +Copyright: |- + Copyright (c) 2025 certimate-go + Copyright (c) 2024 Yoan.Liu +ShortDescription: 开源的 SSL 证书管理工具,可以帮助你自动申请、部署 SSL 证书,并在证书即将过期时自动续期。 +Description: |- + 做个人产品或者在中小企业里负责运维的同学,会遇到要管理多个域名的情况,需要给域名申请证书。但是手动申请证书有以下缺点: + - 😱 麻烦:申请证书并部署到服务的流程虽不复杂,但也挺麻烦的,犹其是你有多个域名需要维护的时候。 + - 😭 易忘:另外当前免费证书的有效期只有 90 天,这就要求你定期的操作,增加了工作量的同时,你也很容易忘掉续期,从而导致网站访问不了。 + Certimate 就是为了解决上述问题而产生的,它具有以下优势: + - 本地部署:一键安装,只需要下载二进制文件,然后直接运行即可。同时也支持 Docker 部署、源代码部署等方式。​ + - 数据安全:由于是私有部署,所有数据均存储在自己的服务器上,不会经过第三方,确保数据的隐私和安全。​ + - 操作简单:简单配置即可轻松申请 SSL 证书并部署到指定的目标上,在证书即将过期前自动续期,从申请证书到使用证书完全自动化,无需人工操作。​ + Certimate 旨在为用户提供一个安全、简便的 SSL 证书管理解决方案。 + 💡 功能特性 + - 灵活的工作流编排方式,证书从申请到部署完全自动化; + - 支持单域名、多域名、泛域名证书,可选 RSA、ECC 签名算法; + - 支持 PEM、PFX、JKS 等多种格式输出证书; + - 支持 20+ 域名托管商(如阿里云、腾讯云、Cloudflare 等,点此查看完整提供商清单); + - 支持 60+ 部署目标(如 Kubernetes、CDN、WAF、负载均衡等,点此查看完整提供商清单); + - 支持邮件、钉钉、飞书、企业微信、Webhook 等多种通知渠道; + - 支持 Let's Encrypt、ZeroSSL、Google Trust Services 等多种 ACME 证书颁发机构; + - 更多特性等待探索。 +Tags: +- acme +- certbot +- ssl +- 证书 +ReleaseNotes: |- + Important + + 此版本无功能性更新,仅标记仓库转移至 certimate-go/certimate。 + 如果你正在使用 Docker 部署 Certimate,请切换镜像名 usual2970/certimate 为 certimate/certimate。原镜像后续不再有版本更新。 + This version has no functional updates. It only indicates that the repo has been transfered to certimate-go/certimate. + If you are running Certimate under Docker, please switch the image from usual2970/certimate to certimate/certimate. The original image will no longer receive version updates in the future. +ReleaseNotesUrl: https://github.com/certimate-go/certimate/releases/tag/v0.3.19 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.certimate.me/docs/introduction/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/u/usual2970/Certimate/0.3.19/usual2970.Certimate.yaml b/manifests/u/usual2970/Certimate/0.3.19/usual2970.Certimate.yaml new file mode 100644 index 0000000000000..383b4c28abca3 --- /dev/null +++ b/manifests/u/usual2970/Certimate/0.3.19/usual2970.Certimate.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: usual2970.Certimate +PackageVersion: 0.3.19 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/u/usual2970/Certimate/0.3.20/usual2970.Certimate.installer.yaml b/manifests/u/usual2970/Certimate/0.3.20/usual2970.Certimate.installer.yaml new file mode 100644 index 0000000000000..5afdfe859e30b --- /dev/null +++ b/manifests/u/usual2970/Certimate/0.3.20/usual2970.Certimate.installer.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: usual2970.Certimate +PackageVersion: 0.3.20 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: certimate.exe + PortableCommandAlias: certimate +Commands: +- certimate +ReleaseDate: 2025-06-29 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/certimate-go/certimate/releases/download/v0.3.20/certimate_v0.3.20_windows_amd64.zip + InstallerSha256: 73D95EF4EB0CE38F02FF3767794DED075EAF0D6CC0C60A743FDA17D1E6D2EB82 +- Architecture: arm64 + InstallerUrl: https://github.com/certimate-go/certimate/releases/download/v0.3.20/certimate_v0.3.20_windows_arm64.zip + InstallerSha256: 27B502094942CA12E8E8C8A384AE59DD3704C6F61265C5450531A83DE1C72FBC +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/u/usual2970/Certimate/0.3.20/usual2970.Certimate.locale.en-US.yaml b/manifests/u/usual2970/Certimate/0.3.20/usual2970.Certimate.locale.en-US.yaml new file mode 100644 index 0000000000000..2cfd8b294ed53 --- /dev/null +++ b/manifests/u/usual2970/Certimate/0.3.20/usual2970.Certimate.locale.en-US.yaml @@ -0,0 +1,47 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: usual2970.Certimate +PackageVersion: 0.3.20 +PackageLocale: en-US +Publisher: Yoan.liu +PublisherUrl: https://profile.ikit.fun/ +PublisherSupportUrl: https://github.com/certimate-go/certimate/issues +PackageName: Certimate +PackageUrl: https://docs.certimate.me/en/ +License: MIT +LicenseUrl: https://github.com/certimate-go/certimate/blob/HEAD/LICENSE +Copyright: |- + Copyright (c) 2025 certimate-go + Copyright (c) 2024 Yoan.Liu +ShortDescription: An open-source SSL certificate management tool that helps you automatically apply for and deploy SSL certificates, as well as automatically renew them when they are about to expire. +Description: |- + For individuals managing personal projects or those responsible for IT operations in small businesses who need to manage multiple domain names, applying for certificates manually comes with several drawbacks: + - 😱 Troublesome: Applying for and deploying certificates isn’t difficult, but it can be quite a hassle, especially when managing multiple domains. + - 😭 Easily forgotten: The current free certificate has a validity period of only 90 days, requiring regular renewal operations. This increases the workload and makes it easy to forget, which can result in the website becoming inaccessible. + Certimate was created to solve the above-mentioned issues and has the following advantages: + - Local Deployment: Simply to install, download the binary and run it directly. Supports Docker deployment and source code deployment for added flexibility. + - Data Security: With private deployment, all data is stored on your own servers, ensuring it never resides on third-party systems and maintaining full control over your data. + - Easy Operation: Effortlessly apply and deploy SSL certificates with minimal configuration. The system automatically renews certificates before expiration, providing a fully automated workflow, no manual intervention required. + Certimate aims to provide users with a secure and user-friendly SSL certificate management solution. + 💡 Features + - Flexible workflow orchestration, fully automation from certificate application to deployment; + - Supports single-domain, multi-domain, wildcard certificates, with options for RSA or ECC. + - Supports various certificate formats such as PEM, PFX, JKS. + - Supports more than 20+ domain registrars (e.g., Alibaba Cloud, Tencent Cloud, Cloudflare, etc. Check out this link); + - Supports more than 60+ deployment targets (e.g., Kubernetes, CDN, WAF, load balancers, etc. Check out this link); + - Supports multiple notification channels including email, DingTalk, Feishu, WeCom, Webhook, and more; + - Supports multiple ACME CAs including Let's Encrypt, ZeroSSL, Google Trust Services, and more; + - More features waiting to be discovered. +Tags: +- acme +- cert +- certbot +- certificate +- ssl +ReleaseNotesUrl: https://github.com/certimate-go/certimate/releases/tag/v0.3.20 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.certimate.me/en/docs/introduction/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/u/usual2970/Certimate/0.3.20/usual2970.Certimate.locale.zh-CN.yaml b/manifests/u/usual2970/Certimate/0.3.20/usual2970.Certimate.locale.zh-CN.yaml new file mode 100644 index 0000000000000..1780c21e726a1 --- /dev/null +++ b/manifests/u/usual2970/Certimate/0.3.20/usual2970.Certimate.locale.zh-CN.yaml @@ -0,0 +1,65 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: usual2970.Certimate +PackageVersion: 0.3.20 +PackageLocale: zh-CN +Publisher: Yoan.liu +PublisherUrl: https://profile.ikit.fun/ +PublisherSupportUrl: https://github.com/certimate-go/certimate/issues +PackageName: Certimate +PackageUrl: https://docs.certimate.me/ +License: MIT +LicenseUrl: https://github.com/certimate-go/certimate/blob/HEAD/LICENSE +Copyright: |- + Copyright (c) 2025 certimate-go + Copyright (c) 2024 Yoan.Liu +ShortDescription: 开源的 SSL 证书管理工具,可以帮助你自动申请、部署 SSL 证书,并在证书即将过期时自动续期。 +Description: |- + 做个人产品或者在中小企业里负责运维的同学,会遇到要管理多个域名的情况,需要给域名申请证书。但是手动申请证书有以下缺点: + - 😱 麻烦:申请证书并部署到服务的流程虽不复杂,但也挺麻烦的,犹其是你有多个域名需要维护的时候。 + - 😭 易忘:另外当前免费证书的有效期只有 90 天,这就要求你定期的操作,增加了工作量的同时,你也很容易忘掉续期,从而导致网站访问不了。 + Certimate 就是为了解决上述问题而产生的,它具有以下优势: + - 本地部署:一键安装,只需要下载二进制文件,然后直接运行即可。同时也支持 Docker 部署、源代码部署等方式。​ + - 数据安全:由于是私有部署,所有数据均存储在自己的服务器上,不会经过第三方,确保数据的隐私和安全。​ + - 操作简单:简单配置即可轻松申请 SSL 证书并部署到指定的目标上,在证书即将过期前自动续期,从申请证书到使用证书完全自动化,无需人工操作。​ + Certimate 旨在为用户提供一个安全、简便的 SSL 证书管理解决方案。 + 💡 功能特性 + - 灵活的工作流编排方式,证书从申请到部署完全自动化; + - 支持单域名、多域名、泛域名证书,可选 RSA、ECC 签名算法; + - 支持 PEM、PFX、JKS 等多种格式输出证书; + - 支持 20+ 域名托管商(如阿里云、腾讯云、Cloudflare 等,点此查看完整提供商清单); + - 支持 60+ 部署目标(如 Kubernetes、CDN、WAF、负载均衡等,点此查看完整提供商清单); + - 支持邮件、钉钉、飞书、企业微信、Webhook 等多种通知渠道; + - 支持 Let's Encrypt、ZeroSSL、Google Trust Services 等多种 ACME 证书颁发机构; + - 更多特性等待探索。 +Tags: +- acme +- certbot +- ssl +- 证书 +ReleaseNotes: |- + Changelog + ✨ 新增功能 + - 支持 ACME Profiles Extension + - 新增 DNS-01 提供商:Spaceship + - 新增部署提供商:Kong + - 新增部署提供商:通过腾讯云 SSL 更新云资源证书 + - 部署到腾讯云各服务时支持指定接口端点(Endpoint) + 🐛 修复 Bug + - 修复无法部署到雨云 RCDN 的问题 + - 修复 #812 相关问题 + - 修复 #815 相关问题 + - 修复 #819 相关问题 + 🛠 优化 & 其他改动 + - 优化上传证书到华为云 SCM 的逻辑,减少接口调用次数 + - 升级 gomod 依赖项 + - 升级 npm 依赖项 + + Full Changelog: https://github.com/certimate-go/certimate/compare/v0.3.19...v0.3.20, by @imlonghao @fudiwei +ReleaseNotesUrl: https://github.com/certimate-go/certimate/releases/tag/v0.3.20 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.certimate.me/docs/introduction/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/u/usual2970/Certimate/0.3.20/usual2970.Certimate.yaml b/manifests/u/usual2970/Certimate/0.3.20/usual2970.Certimate.yaml new file mode 100644 index 0000000000000..c800a8d84cf25 --- /dev/null +++ b/manifests/u/usual2970/Certimate/0.3.20/usual2970.Certimate.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: usual2970.Certimate +PackageVersion: 0.3.20 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/u/usual2970/Certimate/0.3.21/usual2970.Certimate.installer.yaml b/manifests/u/usual2970/Certimate/0.3.21/usual2970.Certimate.installer.yaml new file mode 100644 index 0000000000000..a8e2fae3d767c --- /dev/null +++ b/manifests/u/usual2970/Certimate/0.3.21/usual2970.Certimate.installer.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: usual2970.Certimate +PackageVersion: 0.3.21 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: certimate.exe + PortableCommandAlias: certimate +Commands: +- certimate +ReleaseDate: 2025-07-04 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/certimate-go/certimate/releases/download/v0.3.21/certimate_v0.3.21_windows_amd64.zip + InstallerSha256: 05C8D0FEED3295C1468E2A73DB10EBEC67D74249F2A46E8B98F516A28978FA61 +- Architecture: arm64 + InstallerUrl: https://github.com/certimate-go/certimate/releases/download/v0.3.21/certimate_v0.3.21_windows_arm64.zip + InstallerSha256: 056579DF6FFEE1E7207F96A6C87223C9A92FD314A5FB906FC1E94C3F46C72DA4 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/u/usual2970/Certimate/0.3.21/usual2970.Certimate.locale.en-US.yaml b/manifests/u/usual2970/Certimate/0.3.21/usual2970.Certimate.locale.en-US.yaml new file mode 100644 index 0000000000000..54eaa857db71f --- /dev/null +++ b/manifests/u/usual2970/Certimate/0.3.21/usual2970.Certimate.locale.en-US.yaml @@ -0,0 +1,47 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: usual2970.Certimate +PackageVersion: 0.3.21 +PackageLocale: en-US +Publisher: Yoan.liu +PublisherUrl: https://profile.ikit.fun/ +PublisherSupportUrl: https://github.com/certimate-go/certimate/issues +PackageName: Certimate +PackageUrl: https://docs.certimate.me/en/ +License: MIT +LicenseUrl: https://github.com/certimate-go/certimate/blob/HEAD/LICENSE +Copyright: |- + Copyright (c) 2025 certimate-go + Copyright (c) 2024 Yoan.Liu +ShortDescription: An open-source SSL certificate management tool that helps you automatically apply for and deploy SSL certificates, as well as automatically renew them when they are about to expire. +Description: |- + For individuals managing personal projects or those responsible for IT operations in small businesses who need to manage multiple domain names, applying for certificates manually comes with several drawbacks: + - 😱 Troublesome: Applying for and deploying certificates isn’t difficult, but it can be quite a hassle, especially when managing multiple domains. + - 😭 Easily forgotten: The current free certificate has a validity period of only 90 days, requiring regular renewal operations. This increases the workload and makes it easy to forget, which can result in the website becoming inaccessible. + Certimate was created to solve the above-mentioned issues and has the following advantages: + - Local Deployment: Simply to install, download the binary and run it directly. Supports Docker deployment and source code deployment for added flexibility. + - Data Security: With private deployment, all data is stored on your own servers, ensuring it never resides on third-party systems and maintaining full control over your data. + - Easy Operation: Effortlessly apply and deploy SSL certificates with minimal configuration. The system automatically renews certificates before expiration, providing a fully automated workflow, no manual intervention required. + Certimate aims to provide users with a secure and user-friendly SSL certificate management solution. + 💡 Features + - Flexible workflow orchestration, fully automation from certificate application to deployment; + - Supports single-domain, multi-domain, wildcard certificates, with options for RSA or ECC. + - Supports various certificate formats such as PEM, PFX, JKS. + - Supports more than 20+ domain registrars (e.g., Alibaba Cloud, Tencent Cloud, Cloudflare, etc. Check out this link); + - Supports more than 60+ deployment targets (e.g., Kubernetes, CDN, WAF, load balancers, etc. Check out this link); + - Supports multiple notification channels including email, DingTalk, Feishu, WeCom, Webhook, and more; + - Supports multiple ACME CAs including Let's Encrypt, ZeroSSL, Google Trust Services, and more; + - More features waiting to be discovered. +Tags: +- acme +- cert +- certbot +- certificate +- ssl +ReleaseNotesUrl: https://github.com/certimate-go/certimate/releases/tag/v0.3.21 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.certimate.me/en/docs/introduction/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/u/usual2970/Certimate/0.3.21/usual2970.Certimate.locale.zh-CN.yaml b/manifests/u/usual2970/Certimate/0.3.21/usual2970.Certimate.locale.zh-CN.yaml new file mode 100644 index 0000000000000..d189f6c073ffe --- /dev/null +++ b/manifests/u/usual2970/Certimate/0.3.21/usual2970.Certimate.locale.zh-CN.yaml @@ -0,0 +1,57 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: usual2970.Certimate +PackageVersion: 0.3.21 +PackageLocale: zh-CN +Publisher: Yoan.liu +PublisherUrl: https://profile.ikit.fun/ +PublisherSupportUrl: https://github.com/certimate-go/certimate/issues +PackageName: Certimate +PackageUrl: https://docs.certimate.me/ +License: MIT +LicenseUrl: https://github.com/certimate-go/certimate/blob/HEAD/LICENSE +Copyright: |- + Copyright (c) 2025 certimate-go + Copyright (c) 2024 Yoan.Liu +ShortDescription: 开源的 SSL 证书管理工具,可以帮助你自动申请、部署 SSL 证书,并在证书即将过期时自动续期。 +Description: |- + 做个人产品或者在中小企业里负责运维的同学,会遇到要管理多个域名的情况,需要给域名申请证书。但是手动申请证书有以下缺点: + - 😱 麻烦:申请证书并部署到服务的流程虽不复杂,但也挺麻烦的,犹其是你有多个域名需要维护的时候。 + - 😭 易忘:另外当前免费证书的有效期只有 90 天,这就要求你定期的操作,增加了工作量的同时,你也很容易忘掉续期,从而导致网站访问不了。 + Certimate 就是为了解决上述问题而产生的,它具有以下优势: + - 本地部署:一键安装,只需要下载二进制文件,然后直接运行即可。同时也支持 Docker 部署、源代码部署等方式。​ + - 数据安全:由于是私有部署,所有数据均存储在自己的服务器上,不会经过第三方,确保数据的隐私和安全。​ + - 操作简单:简单配置即可轻松申请 SSL 证书并部署到指定的目标上,在证书即将过期前自动续期,从申请证书到使用证书完全自动化,无需人工操作。​ + Certimate 旨在为用户提供一个安全、简便的 SSL 证书管理解决方案。 + 💡 功能特性 + - 灵活的工作流编排方式,证书从申请到部署完全自动化; + - 支持单域名、多域名、泛域名证书,可选 RSA、ECC 签名算法; + - 支持 PEM、PFX、JKS 等多种格式输出证书; + - 支持 20+ 域名托管商(如阿里云、腾讯云、Cloudflare 等,点此查看完整提供商清单); + - 支持 60+ 部署目标(如 Kubernetes、CDN、WAF、负载均衡等,点此查看完整提供商清单); + - 支持邮件、钉钉、飞书、企业微信、Webhook 等多种通知渠道; + - 支持 Let's Encrypt、ZeroSSL、Google Trust Services 等多种 ACME 证书颁发机构; + - 更多特性等待探索。 +Tags: +- acme +- certbot +- ssl +- 证书 +ReleaseNotes: |- + Changelog + 🐛 修复 Bug + - 修复 #834 相关问题 + - 修复 #835 相关问题 + - 修复 #838 相关问题 + - 修复 #841 相关问题 + 🛠 优化 & 其他改动 + - 优化部分文案 + + Full Changelog: https://github.com/certimate-go/certimate/compare/v0.3.20...v0.3.21, by @fudiwei +ReleaseNotesUrl: https://github.com/certimate-go/certimate/releases/tag/v0.3.21 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.certimate.me/docs/introduction/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/u/usual2970/Certimate/0.3.21/usual2970.Certimate.yaml b/manifests/u/usual2970/Certimate/0.3.21/usual2970.Certimate.yaml new file mode 100644 index 0000000000000..d12fbb2a92025 --- /dev/null +++ b/manifests/u/usual2970/Certimate/0.3.21/usual2970.Certimate.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: usual2970.Certimate +PackageVersion: 0.3.21 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/v/VirusTotal/YARA-X/1.3.0/VirusTotal.YARA-X.installer.yaml b/manifests/v/VirusTotal/YARA-X/1.3.0/VirusTotal.YARA-X.installer.yaml new file mode 100644 index 0000000000000..50dbc05ff52ec --- /dev/null +++ b/manifests/v/VirusTotal/YARA-X/1.3.0/VirusTotal.YARA-X.installer.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: VirusTotal.YARA-X +PackageVersion: 1.3.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: yr.exe +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/VirusTotal/yara-x/releases/download/v1.3.0/yara-x-v1.3.0-x86_64-pc-windows-msvc.zip + InstallerSha256: DD1524EBA5FFDF9C25258CA4C2E15BF5DCF02A0FA340570F8E7609E68444445E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/v/VirusTotal/YARA-X/1.3.0/VirusTotal.YARA-X.locale.en-US.yaml b/manifests/v/VirusTotal/YARA-X/1.3.0/VirusTotal.YARA-X.locale.en-US.yaml new file mode 100644 index 0000000000000..762dbd1ce50e7 --- /dev/null +++ b/manifests/v/VirusTotal/YARA-X/1.3.0/VirusTotal.YARA-X.locale.en-US.yaml @@ -0,0 +1,25 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: VirusTotal.YARA-X +PackageVersion: 1.3.0 +PackageLocale: en-US +Publisher: VirusTotal +PublisherUrl: https://github.com/VirusTotal +PublisherSupportUrl: https://github.com/VirusTotal/yara-x/issues +PackageName: YARA-X +PackageUrl: https://github.com/VirusTotal/yara-x +License: BSD-3-Clause +LicenseUrl: https://github.com/VirusTotal/yara-x/blob/HEAD/LICENSE +ShortDescription: YARA-X is a re-incarnation of YARA, a pattern matching tool designed with malware researchers in mind. This new incarnation intends to be faster, safer and more user-friendly than its predecessor. +ReleaseNotes: |- + - Add span information to Event::Begin and Event::End (f4259f0). + - Add support for private patterns. Private patterns were being accepted but ignored. (21a9090). + - BUGFIX: add YRX_ prefix to constants in the C API to avoid name collisions (#382). + - BUGFIX: increase MAX_ATOMS_PER_REGEXP from 8192 to 10000 (#387, 664abac). +ReleaseNotesUrl: https://github.com/VirusTotal/yara-x/releases/tag/v1.3.0 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/VirusTotal/yara-x/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/v/VirusTotal/YARA-X/1.3.0/VirusTotal.YARA-X.yaml b/manifests/v/VirusTotal/YARA-X/1.3.0/VirusTotal.YARA-X.yaml new file mode 100644 index 0000000000000..8220e85527c72 --- /dev/null +++ b/manifests/v/VirusTotal/YARA-X/1.3.0/VirusTotal.YARA-X.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: VirusTotal.YARA-X +PackageVersion: 1.3.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/w/WHONET/WHONET/25.7.8/WHONET.WHONET.installer.yaml b/manifests/w/WHONET/WHONET/25.7.8/WHONET.WHONET.installer.yaml new file mode 100644 index 0000000000000..036d971b815f1 --- /dev/null +++ b/manifests/w/WHONET/WHONET/25.7.8/WHONET.WHONET.installer.yaml @@ -0,0 +1,21 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: WHONET.WHONET +PackageVersion: 25.7.8 +Platform: +- Windows.Desktop +InstallerType: burn +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://whonet.org/releases/WHONET2025-Setup-x86-v25.7.8.exe + InstallerSha256: 3A814C3E4EC81D8F98D1357A0866BB68B6E2EB70A0BF668AE42AC4BA4F73A42E +- Architecture: x64 + InstallerUrl: https://whonet.org/releases/WHONET2025-Setup-x64-v25.7.8.exe + InstallerSha256: E6CBD98E449B81F068EC01AA3C646B447E0AD7A288B50AB2085E5EC8EC170D88 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/w/WHONET/WHONET/25.7.8/WHONET.WHONET.locale.en-US.yaml b/manifests/w/WHONET/WHONET/25.7.8/WHONET.WHONET.locale.en-US.yaml new file mode 100644 index 0000000000000..79cefbacca82b --- /dev/null +++ b/manifests/w/WHONET/WHONET/25.7.8/WHONET.WHONET.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: WHONET.WHONET +PackageVersion: 25.7.8 +PackageLocale: en-US +Publisher: Brigham and Women's Hospital +PublisherUrl: https://whonet.org/ +PublisherSupportUrl: https://whonet.org/contact.html +Author: Brigham and Women's Hospital +PackageName: WHONET 2025 +PackageUrl: https://whonet.org/software.html +License: Freeware +Copyright: Copyright (c) Brigham and Women's Hospital. All rights reserved. +ShortDescription: WHONET is a free desktop Windows application for the management and analysis of microbiology laboratory data with a particular focus on antimicrobial resistance surveillance. +Description: |- + WHONET is a free desktop Windows application for the management and analysis of microbiology laboratory data with a particular focus on antimicrobial resistance surveillance developed and supported by the WHO Collaborating Centre for Surveillance of Antimicrobial Resistance at the Brigham and Women's Hospital in Boston, Massachusetts. + WHONET, available in 45 languages, supports local, national, regional, and global surveillance efforts in over 2,300 hospital, public health, animal health, and food laboratories in over 130 countries worldwide. + WHONET 2025 is a modernized and expanded version of WHONET 5.6. This version supports 45 languages and includes new features for exporting to the WHO GLASS data structure. + It includes support for CLSI 2025 M100, M45, M60, M61, as well as EUCAST 2025 bacterial breakpoints. Also included are the most recent CLSI VET01, VET03/04, and VET06 breakpoints. +Moniker: WHONET +Tags: +- AMR +- Antibiotics +- BacLink +- Bacteriology +- CLSI +- EUCAST +- GLASS +- Laboratory +- Microbiology +- Resistance +- WHO +ReleaseNotes: PAHO ReLAVRA+ export - Removes organism, first per patient, specimen type and antibiotic filters to align with the updated protocol. +ReleaseNotesUrl: https://whonet.org/WHONET-ReleaseNotes.html +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/w/WHONET/WHONET/25.7.8/WHONET.WHONET.yaml b/manifests/w/WHONET/WHONET/25.7.8/WHONET.WHONET.yaml new file mode 100644 index 0000000000000..3708a2ee195a6 --- /dev/null +++ b/manifests/w/WHONET/WHONET/25.7.8/WHONET.WHONET.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: WHONET.WHONET +PackageVersion: 25.7.8 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/w/Wibu-Systems/CodeMeterRuntimeKit/8.30.6885.501/Wibu-Systems.CodeMeterRuntimeKit.installer.yaml b/manifests/w/Wibu-Systems/CodeMeterRuntimeKit/8.30.6885.501/Wibu-Systems.CodeMeterRuntimeKit.installer.yaml new file mode 100644 index 0000000000000..d2d1a617d9dab --- /dev/null +++ b/manifests/w/Wibu-Systems/CodeMeterRuntimeKit/8.30.6885.501/Wibu-Systems.CodeMeterRuntimeKit.installer.yaml @@ -0,0 +1,39 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Wibu-Systems.CodeMeterRuntimeKit +PackageVersion: 8.30.6885.501 +InstallerType: exe # dotNetInstaller + InstallShield MSI +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /q /nosplash /ComponentArgs "*":"/quiet /norestart" + SilentWithProgress: /qb /ComponentArgs "*":"/passive /norestart" + Log: /Log /LogFile "" +FileExtensions: +- wbb +- wibucmlif +- wibucmrac +- wibucmram +- wibucmrar +- wibucmrau +ReleaseDate: 2025-05-09 +Installers: +- Architecture: x86 + InstallerUrl: https://www.wibu.com/support/user/user-software/file/download/15458.html?tx_wibudownloads_downloadlist[directDownload]=directDownload&cHash=8dba7ab094dec6267346f04fce2a2bcd + InstallerSha256: 812C423BA890EC12191EC13928D1A4022C588E1C76AA017BCC736A7B9A0A4E82 + ProductCode: '{EE9CC73A-383A-4F73-81C4-5BFF60719FEE}' + AppsAndFeaturesEntries: + - UpgradeCode: '{6D51F7BF-E48C-4802-AE9C-23A29D595089}' + InstallerType: msi +- Architecture: x64 + InstallerUrl: https://www.wibu.com/support/user/user-software/file/download/15458.html?tx_wibudownloads_downloadlist[directDownload]=directDownload&cHash=8dba7ab094dec6267346f04fce2a2bcd + InstallerSha256: 812C423BA890EC12191EC13928D1A4022C588E1C76AA017BCC736A7B9A0A4E82 + ProductCode: '{76E4A420-B467-42CF-94C3-680DF15407B2}' + AppsAndFeaturesEntries: + - UpgradeCode: '{CA3262B1-A5FA-4AC8-A3F0-72873B23C30C}' + InstallerType: msi +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/w/Wibu-Systems/CodeMeterRuntimeKit/8.30.6885.501/Wibu-Systems.CodeMeterRuntimeKit.locale.en-US.yaml b/manifests/w/Wibu-Systems/CodeMeterRuntimeKit/8.30.6885.501/Wibu-Systems.CodeMeterRuntimeKit.locale.en-US.yaml new file mode 100644 index 0000000000000..e5e274cb5c4b4 --- /dev/null +++ b/manifests/w/Wibu-Systems/CodeMeterRuntimeKit/8.30.6885.501/Wibu-Systems.CodeMeterRuntimeKit.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Wibu-Systems.CodeMeterRuntimeKit +PackageVersion: 8.30.6885.501 +PackageLocale: en-US +Publisher: WIBU-SYSTEMS AG +PublisherUrl: https://www.wibu.com/ +PublisherSupportUrl: https://www.wibu.com/contactform.html +PrivacyUrl: https://www.wibu.com/privacy.html +Author: WIBU-SYSTEMS AG +PackageName: CodeMeter Runtime Kit +PackageUrl: https://www.wibu.com/products/codemeter/runtime.html +License: Proprietary +LicenseUrl: https://www.wibu.com/terms-conditions.html +Copyright: Copyright (c) 2002-2025, WIBU-SYSTEMS AG +CopyrightUrl: https://www.wibu.com/terms-conditions.html +ShortDescription: CodeMeter Runtime is an out-of-the-box package that you deliver along with your software. It contains all the components that you need to create CodeMeter-based licenses. CodeMeter Runtime is available as a stand-alone installer and a merge module. +# Description: +# Moniker: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/w/Wibu-Systems/CodeMeterRuntimeKit/8.30.6885.501/Wibu-Systems.CodeMeterRuntimeKit.locale.zh-CN.yaml b/manifests/w/Wibu-Systems/CodeMeterRuntimeKit/8.30.6885.501/Wibu-Systems.CodeMeterRuntimeKit.locale.zh-CN.yaml new file mode 100644 index 0000000000000..39a6efc87e67c --- /dev/null +++ b/manifests/w/Wibu-Systems/CodeMeterRuntimeKit/8.30.6885.501/Wibu-Systems.CodeMeterRuntimeKit.locale.zh-CN.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Wibu-Systems.CodeMeterRuntimeKit +PackageVersion: 8.30.6885.501 +PackageLocale: zh-CN +# Publisher: +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +# PackageName: +# PackageUrl: +License: 专有软件 +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: CodeMeter Runtime 是一个开箱即用的软件包,可随您的应用程序一同发布。它包含了创建基于 CodeMeter 许可证所需的所有组件。CodeMeter Runtime 提供独立安装程序和合并模块两种形式。 +# Description: +# Moniker: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/w/Wibu-Systems/CodeMeterRuntimeKit/8.30.6885.501/Wibu-Systems.CodeMeterRuntimeKit.yaml b/manifests/w/Wibu-Systems/CodeMeterRuntimeKit/8.30.6885.501/Wibu-Systems.CodeMeterRuntimeKit.yaml new file mode 100644 index 0000000000000..6c27cacfa23b1 --- /dev/null +++ b/manifests/w/Wibu-Systems/CodeMeterRuntimeKit/8.30.6885.501/Wibu-Systems.CodeMeterRuntimeKit.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Wibu-Systems.CodeMeterRuntimeKit +PackageVersion: 8.30.6885.501 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/w/Wind/WindFinancialTerminal/25.5.0/Wind.WindFinancialTerminal.installer.yaml b/manifests/w/Wind/WindFinancialTerminal/25.5.0/Wind.WindFinancialTerminal.installer.yaml new file mode 100644 index 0000000000000..17c97c0417b96 --- /dev/null +++ b/manifests/w/Wind/WindFinancialTerminal/25.5.0/Wind.WindFinancialTerminal.installer.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Wind.WindFinancialTerminal +PackageVersion: 25.5.0 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLDIR="" +Protocols: +- windlocal +Installers: +- InstallerLocale: en-US + Architecture: x86 + InstallerUrl: https://d-cdn.wind.com.cn/windnet/WFT_Setup_ENU.msi + InstallerSha256: 6D9E24629B19B35A80A27866B3777404AD77D58ABAEF982C35412B75F9F79A75 + ProductCode: '{FEFC4635-25D2-4DC6-9B5E-1EA9C7F2204F}' + AppsAndFeaturesEntries: + - UpgradeCode: '{9A76D129-0DB2-49E2-ADA5-370DFA0D1ED9}' +- InstallerLocale: zh-CN + Architecture: x86 + InstallerUrl: https://d-cdn.wind.com.cn/windnet/WFT_Setup_CHS.msi + InstallerSha256: 8BAD416E3D47A9974B5257984210B87FB9EDFF65C7D54A0288EA8509CF606CF4 + ProductCode: '{45BCB6EA-88C7-49A8-975F-C21A36127B9A}' + AppsAndFeaturesEntries: + - UpgradeCode: '{5B26446C-6CE7-4FE2-AD16-8033CE2BAD6D}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/w/Wind/WindFinancialTerminal/25.5.0/Wind.WindFinancialTerminal.locale.en-US.yaml b/manifests/w/Wind/WindFinancialTerminal/25.5.0/Wind.WindFinancialTerminal.locale.en-US.yaml new file mode 100644 index 0000000000000..0612250c420dc --- /dev/null +++ b/manifests/w/Wind/WindFinancialTerminal/25.5.0/Wind.WindFinancialTerminal.locale.en-US.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Wind.WindFinancialTerminal +PackageVersion: 25.5.0 +PackageLocale: en-US +Publisher: Wind Information Co., Ltd +PublisherUrl: https://www.wind.com.cn/ +Author: Wind Information Co., Ltd. +PackageName: Wind Financial Terminal +PackageUrl: https://www.wind.com.cn/portal/en/WFT/index.html +License: Proprietary +Copyright: Copyright 1998-2025 Wind, All Rights Reserved +ShortDescription: The All-in-one Financial Software for Global Data and Information +Description: WFT is a powerful financial software and indispensable business partner to global financial institutions, investment and research firms, corporates, government authorities, and media etc., providing global financial data, information and insights on all asset classes such as equity, bond, futures, FX, fund, index, option, commodities, as well as commercial data in macroeconomics, industry sectors and corporate operations. WFT provides 7 / 24 / 365 real-time information of global markets to keep you updated with latest market trends, financial opportunities and competition. +Moniker: wft +Tags: +- finance +- financial +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/w/Wind/WindFinancialTerminal/25.5.0/Wind.WindFinancialTerminal.locale.zh-CN.yaml b/manifests/w/Wind/WindFinancialTerminal/25.5.0/Wind.WindFinancialTerminal.locale.zh-CN.yaml new file mode 100644 index 0000000000000..56ab0de1a4102 --- /dev/null +++ b/manifests/w/Wind/WindFinancialTerminal/25.5.0/Wind.WindFinancialTerminal.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.10.0.schema.json + +PackageIdentifier: Wind.WindFinancialTerminal +PackageVersion: 25.5.0 +PackageLocale: zh-CN +PublisherUrl: https://www.wind.com.cn/portal/zh/Home/ +Author: 万得信息技术股份有限公司 +PackageUrl: https://www.wind.com.cn/portal/zh/WFT/index.html +License: 专有软件 +ShortDescription: 覆盖全球金融市场的数据与信息 +Description: 内容包括股票、债券、期货、外汇、基金、指数、权证、宏观行业等多项品种,7×24×365 不间断地为金融机构、政府组织、企业、媒体提供准确、及时、完整的金融数据资讯。 +Tags: +- 经济 +- 金融 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/w/Wind/WindFinancialTerminal/25.5.0/Wind.WindFinancialTerminal.yaml b/manifests/w/Wind/WindFinancialTerminal/25.5.0/Wind.WindFinancialTerminal.yaml new file mode 100644 index 0000000000000..46d025c8ab5de --- /dev/null +++ b/manifests/w/Wind/WindFinancialTerminal/25.5.0/Wind.WindFinancialTerminal.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Wind.WindFinancialTerminal +PackageVersion: 25.5.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/x/xpf0000/FlyEnv/4.10.0/xpf0000.FlyEnv.installer.yaml b/manifests/x/xpf0000/FlyEnv/4.10.0/xpf0000.FlyEnv.installer.yaml new file mode 100644 index 0000000000000..44d73a96bb7bc --- /dev/null +++ b/manifests/x/xpf0000/FlyEnv/4.10.0/xpf0000.FlyEnv.installer.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: xpf0000.FlyEnv +PackageVersion: 4.10.0 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 58e103f9-7c07-5ccc-9a52-ce8faf14c36b +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/xpf0000/FlyEnv/releases/download/v4.10.0/FlyEnv.Setup.4.10.0.exe + InstallerSha256: 9658711F9D0427CB5A02EEC0F6C162820F36512FFECC1928B4D7E0E2C742D72F + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/xpf0000/FlyEnv/releases/download/v4.10.0/FlyEnv.Setup.4.10.0.exe + InstallerSha256: 9658711F9D0427CB5A02EEC0F6C162820F36512FFECC1928B4D7E0E2C742D72F + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/x/xpf0000/FlyEnv/4.10.0/xpf0000.FlyEnv.locale.en-US.yaml b/manifests/x/xpf0000/FlyEnv/4.10.0/xpf0000.FlyEnv.locale.en-US.yaml new file mode 100644 index 0000000000000..8083e913f11b2 --- /dev/null +++ b/manifests/x/xpf0000/FlyEnv/4.10.0/xpf0000.FlyEnv.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: xpf0000.FlyEnv +PackageVersion: 4.10.0 +PackageLocale: en-US +Publisher: pengfei xu +PublisherUrl: https://github.com/xpf0000 +PublisherSupportUrl: https://github.com/xpf0000/FlyEnv/issues +Author: Xu Pengfei +PackageName: FlyEnv +PackageUrl: https://www.macphpstudy.com/ +License: BSD-3-Clause +LicenseUrl: https://github.com/xpf0000/FlyEnv/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024, Xu Pengfei +ShortDescription: Powerful Web Server and Environment Manager +Description: |- + FlyEnv is an all-in-one Web Server / Database Server / Development environment management GUI App + In short, FlyEnv provides a complete set of operating environments. Help users develop and debug PHP/NodeJS/Java/Go/Python applications such as laravel/wordpress/yii2/thinkphp/fastadmin/NestJS/SpringBoot/Gin/Beego/Django/Flask... +Tags: +- server +ReleaseNotes: |- + 1. Add Bun module + 2. Add Deno module + 3. Add etcd module + 4. Optimize MySQL service shutdown method to prevent data corruption and startup failures + 5. Optimize MariaDB service shutdown method to prevent data corruption and startup failures + 6. Add database management features for MySQL and MariaDB including: root password reset, database/user creation, and database backup +ReleaseNotesUrl: https://github.com/xpf0000/FlyEnv/releases/tag/v4.10.0 +Documentations: +- DocumentLabel: Guide + DocumentUrl: https://www.macphpstudy.com/guide/what-is-flyenv.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/x/xpf0000/FlyEnv/4.10.0/xpf0000.FlyEnv.locale.zh-CN.yaml b/manifests/x/xpf0000/FlyEnv/4.10.0/xpf0000.FlyEnv.locale.zh-CN.yaml new file mode 100644 index 0000000000000..4f9885e3d2e3d --- /dev/null +++ b/manifests/x/xpf0000/FlyEnv/4.10.0/xpf0000.FlyEnv.locale.zh-CN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: xpf0000.FlyEnv +PackageVersion: 4.10.0 +PackageLocale: zh-CN +Author: 徐鹏飞 +PackageUrl: https://www.macphpstudy.com/zh/ +Copyright: Copyright (c) 2024, 徐鹏飞 +ShortDescription: 功能强大的 Web 服务器和环境管理器 +Description: |- + FlyEnv 是一个集 Web 服务器/数据库服务器/开发环境管理于一体的 GUI 应用程序 + 简而言之,FlyEnv 提供了一套完整的运行环境。帮助用户开发和调试 PHP/NodeJS/Java/Go/Python 程序,如 laravel/wordpress/yii2/thinkphp/fastadmin/NestJS/SpringBoot/Gin/Beego/Django/Flask…… +Tags: +- 服务器 +ReleaseNotesUrl: https://github.com/xpf0000/FlyEnv/releases/tag/v4.10.0 +Documentations: +- DocumentLabel: 指南 + DocumentUrl: https://www.macphpstudy.com/zh/guide/what-is-flyenv.html +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/x/xpf0000/FlyEnv/4.10.0/xpf0000.FlyEnv.yaml b/manifests/x/xpf0000/FlyEnv/4.10.0/xpf0000.FlyEnv.yaml new file mode 100644 index 0000000000000..63223246c418f --- /dev/null +++ b/manifests/x/xpf0000/FlyEnv/4.10.0/xpf0000.FlyEnv.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: xpf0000.FlyEnv +PackageVersion: 4.10.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/x/xxanqw/mikusays/0.1.0/xxanqw.mikusays.installer.yaml b/manifests/x/xxanqw/mikusays/0.1.0/xxanqw.mikusays.installer.yaml new file mode 100644 index 0000000000000..f40aa855e8d80 --- /dev/null +++ b/manifests/x/xxanqw/mikusays/0.1.0/xxanqw.mikusays.installer.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: xxanqw.mikusays +PackageVersion: 0.1.0 +InstallerType: portable +Commands: +- mikusays +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/xxanqw/mikusays/releases/download/v0.1.0/mikusays-windows-x86_64.exe + InstallerSha256: 65DF42DD96D7555817CBB8A8AD9A0B6E6891F4AB7AAF92AC74F037CB599C28DA + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +- Architecture: arm64 + InstallerUrl: https://github.com/xxanqw/mikusays/releases/download/v0.1.0/mikusays-windows-aarch64.exe + InstallerSha256: C2EBD11A6DA3591C6119899427DDF1F311E13D633D65A6CEDF9BE18D75AE4A1C + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/x/xxanqw/mikusays/0.1.0/xxanqw.mikusays.locale.en-US.yaml b/manifests/x/xxanqw/mikusays/0.1.0/xxanqw.mikusays.locale.en-US.yaml new file mode 100644 index 0000000000000..b91d443ab70e1 --- /dev/null +++ b/manifests/x/xxanqw/mikusays/0.1.0/xxanqw.mikusays.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: xxanqw.mikusays +PackageVersion: 0.1.0 +PackageLocale: en-US +Publisher: xxanqw +PackageName: mikusays +License: MIT License +ShortDescription: A "cowsay" clone with Hatsune Miku ASCII art and speech bubbles. +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/x/xxanqw/mikusays/0.1.0/xxanqw.mikusays.yaml b/manifests/x/xxanqw/mikusays/0.1.0/xxanqw.mikusays.yaml new file mode 100644 index 0000000000000..026b4a4d12ea7 --- /dev/null +++ b/manifests/x/xxanqw/mikusays/0.1.0/xxanqw.mikusays.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: xxanqw.mikusays +PackageVersion: 0.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/y/yt-dlp/FFmpeg/N-120063-g5bcff199d9-20250630/yt-dlp.FFmpeg.installer.yaml b/manifests/y/yt-dlp/FFmpeg/N-120063-g5bcff199d9-20250630/yt-dlp.FFmpeg.installer.yaml new file mode 100644 index 0000000000000..83b0e03c23974 --- /dev/null +++ b/manifests/y/yt-dlp/FFmpeg/N-120063-g5bcff199d9-20250630/yt-dlp.FFmpeg.installer.yaml @@ -0,0 +1,46 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: yt-dlp.FFmpeg +PackageVersion: N-120063-g5bcff199d9-20250630 +InstallerType: zip +NestedInstallerType: portable +Commands: +- ffmpeg +- ffplay +- ffprobe +ReleaseDate: 2025-06-30 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x86 + NestedInstallerFiles: + - RelativeFilePath: ffmpeg-N-120063-g5bcff199d9-win32-gpl/bin/ffmpeg.exe + PortableCommandAlias: ffmpeg + - RelativeFilePath: ffmpeg-N-120063-g5bcff199d9-win32-gpl/bin/ffplay.exe + PortableCommandAlias: ffplay + - RelativeFilePath: ffmpeg-N-120063-g5bcff199d9-win32-gpl/bin/ffprobe.exe + PortableCommandAlias: ffprobe + InstallerUrl: https://github.com/yt-dlp/FFmpeg-Builds/releases/download/autobuild-2025-06-30-15-34/ffmpeg-N-120063-g5bcff199d9-win32-gpl.zip + InstallerSha256: 370E335B1336233D8CCBF7B95B8F6D5EEE9E73F59C2887F3C8B8094E14F70DF9 +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: ffmpeg-N-120063-g5bcff199d9-win64-gpl/bin/ffmpeg.exe + PortableCommandAlias: ffmpeg + - RelativeFilePath: ffmpeg-N-120063-g5bcff199d9-win64-gpl/bin/ffplay.exe + PortableCommandAlias: ffplay + - RelativeFilePath: ffmpeg-N-120063-g5bcff199d9-win64-gpl/bin/ffprobe.exe + PortableCommandAlias: ffprobe + InstallerUrl: https://github.com/yt-dlp/FFmpeg-Builds/releases/download/autobuild-2025-06-30-15-34/ffmpeg-N-120063-g5bcff199d9-win64-gpl.zip + InstallerSha256: 97D41C8D2A1A133578423AE89EDF67C6F8F1D04DEFB8B9B49DF4C72329C94631 +- Architecture: arm64 + NestedInstallerFiles: + - RelativeFilePath: ffmpeg-N-120063-g5bcff199d9-winarm64-gpl/bin/ffmpeg.exe + PortableCommandAlias: ffmpeg + - RelativeFilePath: ffmpeg-N-120063-g5bcff199d9-winarm64-gpl/bin/ffplay.exe + PortableCommandAlias: ffplay + - RelativeFilePath: ffmpeg-N-120063-g5bcff199d9-winarm64-gpl/bin/ffprobe.exe + PortableCommandAlias: ffprobe + InstallerUrl: https://github.com/yt-dlp/FFmpeg-Builds/releases/download/autobuild-2025-06-30-15-34/ffmpeg-N-120063-g5bcff199d9-winarm64-gpl.zip + InstallerSha256: 26C634C74088FB6DF2043A2243FBF42074DAE384297A5048B11D77D8ABEABBD3 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/y/yt-dlp/FFmpeg/N-120063-g5bcff199d9-20250630/yt-dlp.FFmpeg.locale.en-US.yaml b/manifests/y/yt-dlp/FFmpeg/N-120063-g5bcff199d9-20250630/yt-dlp.FFmpeg.locale.en-US.yaml new file mode 100644 index 0000000000000..4ab5a03fcd0e5 --- /dev/null +++ b/manifests/y/yt-dlp/FFmpeg/N-120063-g5bcff199d9-20250630/yt-dlp.FFmpeg.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: yt-dlp.FFmpeg +PackageVersion: N-120063-g5bcff199d9-20250630 +PackageLocale: en-US +Publisher: yt-dlp +PublisherUrl: https://github.com/yt-dlp/FFmpeg-Builds +PublisherSupportUrl: https://github.com/yt-dlp/FFmpeg-Builds/issues +Author: yt-dlp +PackageName: FFmpeg for yt-dlp +PackageUrl: https://github.com/yt-dlp/FFmpeg-Builds +License: MIT +LicenseUrl: https://github.com/yt-dlp/FFmpeg-Builds/blob/HEAD/LICENSE +ShortDescription: FFmpeg builds with some patches necessary for smooth integration with yt-dlp. +Tags: +- ffmpeg-builds +- yt-dlp +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/y/yt-dlp/FFmpeg/N-120063-g5bcff199d9-20250630/yt-dlp.FFmpeg.yaml b/manifests/y/yt-dlp/FFmpeg/N-120063-g5bcff199d9-20250630/yt-dlp.FFmpeg.yaml new file mode 100644 index 0000000000000..82cda328ab88f --- /dev/null +++ b/manifests/y/yt-dlp/FFmpeg/N-120063-g5bcff199d9-20250630/yt-dlp.FFmpeg.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: yt-dlp.FFmpeg +PackageVersion: N-120063-g5bcff199d9-20250630 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/z/Zivver/ZivverOfficePlugin/6.10.2/Zivver.ZivverOfficePlugin.installer.yaml b/manifests/z/Zivver/ZivverOfficePlugin/6.10.2/Zivver.ZivverOfficePlugin.installer.yaml new file mode 100644 index 0000000000000..660f03fff5663 --- /dev/null +++ b/manifests/z/Zivver/ZivverOfficePlugin/6.10.2/Zivver.ZivverOfficePlugin.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Zivver.ZivverOfficePlugin +PackageVersion: 6.10.2 +InstallerType: wix +InstallerSwitches: + InstallLocation: TARGETDIR="" +AppsAndFeaturesEntries: +- UpgradeCode: '{57D7D5D0-731B-456C-80CA-C0A475D927E9}' +Installers: +- InstallerLocale: en-US + Architecture: x86 + InstallerUrl: https://downloads.zivver.com/officeplugin/installer/1033/6.10.2/Zivver.OfficePlugin.Installer.msi + InstallerSha256: 99456C4588AD517059E7462971E0D44D3ED937F0CAB292476C5B4BF090B21C6A + ProductCode: '{6FE18F28-6E4E-4835-B523-526305A2361C}' +- InstallerLocale: de-DE + Architecture: x86 + InstallerUrl: https://downloads.zivver.com/officeplugin/installer/1031/6.10.2/Zivver.OfficePlugin.Installer.msi + InstallerSha256: 23E8E9CA8D9FC92108BD57C424181F54A5EDAA9AB3A118E98C7B8A3AAD375DD3 + ProductCode: '{5D9F1613-0FA7-49B7-8639-09A62642681F}' +- InstallerLocale: fr-FR + Architecture: x86 + InstallerUrl: https://downloads.zivver.com/officeplugin/installer/1036/6.10.2/Zivver.OfficePlugin.Installer.msi + InstallerSha256: 4A18E4D6944DF167A653025EBCE8C027A8E269AAA099CDE50788F0F6FD49866C + ProductCode: '{12435CB3-6527-4B83-964F-5B31C7A5FE31}' +- InstallerLocale: nl-NL + Architecture: x86 + InstallerUrl: https://downloads.zivver.com/officeplugin/installer/1043/6.10.2/Zivver.OfficePlugin.Installer.msi + InstallerSha256: CCC01B0D8997E776A3AF962CD7C94B650222C2FAB30557933E8CD9E16CD5F97E + ProductCode: '{60074C7F-BD38-4304-9271-A790AEEEF2E4}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/z/Zivver/ZivverOfficePlugin/6.10.2/Zivver.ZivverOfficePlugin.locale.en-US.yaml b/manifests/z/Zivver/ZivverOfficePlugin/6.10.2/Zivver.ZivverOfficePlugin.locale.en-US.yaml new file mode 100644 index 0000000000000..7432816123a2c --- /dev/null +++ b/manifests/z/Zivver/ZivverOfficePlugin/6.10.2/Zivver.ZivverOfficePlugin.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Zivver.ZivverOfficePlugin +PackageVersion: 6.10.2 +PackageLocale: en-US +Publisher: Zivver B.V. +PublisherUrl: https://www.zivver.com/ +PublisherSupportUrl: https://support.zivver.com/ +PrivacyUrl: https://www.zivver.com/legal/privacy-policy +Author: Zivver B.V. +PackageName: Zivver Office Plugin +PackageUrl: https://docs.zivver.com/en/user/officeplugin/references/install.html +License: Proprietary +LicenseUrl: https://www.zivver.com/legal/terms-and-conditions +Copyright: © 2025 Zivver +CopyrightUrl: https://www.zivver.com/legal/terms-and-conditions +ShortDescription: Secure email transfer and file sharing +# Description: +# Moniker: +Tags: +- email +- mail +- security +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/z/Zivver/ZivverOfficePlugin/6.10.2/Zivver.ZivverOfficePlugin.locale.zh-CN.yaml b/manifests/z/Zivver/ZivverOfficePlugin/6.10.2/Zivver.ZivverOfficePlugin.locale.zh-CN.yaml new file mode 100644 index 0000000000000..580ad70e33b93 --- /dev/null +++ b/manifests/z/Zivver/ZivverOfficePlugin/6.10.2/Zivver.ZivverOfficePlugin.locale.zh-CN.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Zivver.ZivverOfficePlugin +PackageVersion: 6.10.2 +PackageLocale: zh-CN +# Publisher: +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +# PackageName: +# PackageUrl: +License: 专有软件 +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: 安全邮件传输和文件共享 +# Description: +# Moniker: +Tags: +- 安全 +- 电子邮件 +- 邮件 +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/z/Zivver/ZivverOfficePlugin/6.10.2/Zivver.ZivverOfficePlugin.yaml b/manifests/z/Zivver/ZivverOfficePlugin/6.10.2/Zivver.ZivverOfficePlugin.yaml new file mode 100644 index 0000000000000..6a76d51040825 --- /dev/null +++ b/manifests/z/Zivver/ZivverOfficePlugin/6.10.2/Zivver.ZivverOfficePlugin.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Zivver.ZivverOfficePlugin +PackageVersion: 6.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0